Skip to content

Commit

Permalink
chore: 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jun 13, 2023
1 parent d0fceb7 commit 09564d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions .circleci/config.yml
Expand Up @@ -3,26 +3,26 @@ 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
- &build-packages
run:
name: Build
command: npm run build
name: Build
command: npm run build

jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:17.9
- image: cimg/node:20.2
steps:
- checkout
- run:
name: Use NPM v8
command: npm install -g npm@^8
name: Update NPM version
command: sudo npm install -g npm@latest
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
Expand All @@ -34,11 +34,10 @@ jobs:
- ./node_modules
- run:
name: Build
command: npm run build
command: npm run build

workflows:
version: 2
build-and-test:
jobs:
- build

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -45,7 +45,7 @@
"typescript": "5.1.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"axios": "^1.3.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0 || ^7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -7,7 +7,7 @@
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"target": "es6",
"target": "ES2021",
"sourceMap": false,
"outDir": "./dist",
"rootDir": "./lib",
Expand Down

0 comments on commit 09564d3

Please sign in to comment.