From e8bf13177f3e99e66a1954f7c2bcd9c9048749ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Tue, 13 Jun 2023 09:34:12 +0200 Subject: [PATCH] chore: laying the grounds for v10.0.0 --- .circleci/config.yml | 13 ++++++------- package.json | 2 +- tsconfig.build.json | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 324b9d73..d21874dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,15 +3,15 @@ version: 2 aliases: - &restore-cache restore_cache: - key: dependency-cache-{{ checksum "package.json" }} + key: dependency-cache-{{ checksum "package.json" }} - &install-deps run: - name: Install dependencies - command: npm ci + name: Install dependencies + command: npm ci --ignore-scripts - &build-packages run: - name: Build - command: npm run build + name: Build + command: npm run build jobs: build: @@ -27,7 +27,7 @@ jobs: key: dependency-cache-{{ checksum "package.json" }} - run: name: Install dependencies - command: npm ci + command: npm ci --ignore-scripts - save_cache: key: dependency-cache-{{ checksum "package.json" }} paths: @@ -44,4 +44,3 @@ workflows: build-and-test: jobs: - build - diff --git a/package.json b/package.json index 8eec0ed4..460f41bd 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "index.d.ts" ], "peerDependencies": { - "@nestjs/common": "^8.0.0 || ^9.0.0", + "@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0", "passport": "^0.4.0 || ^0.5.0 || ^0.6.0" }, "devDependencies": { diff --git a/tsconfig.build.json b/tsconfig.build.json index 2cb7090c..e4906abd 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -7,7 +7,7 @@ "noLib": false, "emitDecoratorMetadata": true, "experimentalDecorators": true, - "target": "es6", + "target": "ES2021", "sourceMap": false, "outDir": "./dist", "rootDir": "./lib",