Skip to content

Commit

Permalink
chore: laying the grounds for v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jun 13, 2023
1 parent f75a0aa commit c46a369
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
15 changes: 7 additions & 8 deletions .circleci/config.yml
Expand Up @@ -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:
Expand All @@ -27,14 +27,14 @@ 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:
- ./node_modules
- run:
name: Build
command: npm run build
command: npm run build

integration_tests:
working_directory: ~/nest
Expand All @@ -56,4 +56,3 @@ workflows:
- integration_tests:
requires:
- build

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -51,8 +51,8 @@
"typescript": "5.1.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/core": "^7.0.0 || ^8.0.0 || ^9.0.0",
"@nestjs/common": "^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -8,7 +8,7 @@
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"target": "es6",
"target": "ES2021",
"sourceMap": false,
"outDir": "./dist",
"rootDir": "./lib",
Expand Down

0 comments on commit c46a369

Please sign in to comment.