File tree 3 files changed +13
-14
lines changed
3 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ version: 2
3
3
aliases :
4
4
- &restore-cache
5
5
restore_cache :
6
- key : dependency-cache-{{ checksum "package.json" }}
6
+ key : dependency-cache-{{ checksum "package.json" }}
7
7
- &install-deps
8
8
run :
9
- name : Install dependencies
10
- command : npm ci
9
+ name : Install dependencies
10
+ command : npm ci
11
11
- &build-packages
12
12
run :
13
- name : Build
14
- command : npm run build
13
+ name : Build
14
+ command : npm run build
15
15
16
16
jobs :
17
17
build :
@@ -34,24 +34,24 @@ jobs:
34
34
- ./node_modules
35
35
- run :
36
36
name : Build
37
- command : npm run build
37
+ command : npm run build
38
38
39
39
integration_tests :
40
40
working_directory : ~/nest
41
41
machine : true
42
42
steps :
43
43
- checkout
44
- - run :
44
+ - run :
45
45
name : Prepare nvm
46
46
command : |
47
47
echo 'export NVM_DIR="/opt/circleci/.nvm"' >> $BASH_ENV
48
48
echo ' [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
49
- - run :
49
+ - run :
50
50
name : Upgrade Node.js
51
51
command : |
52
- nvm install v12
52
+ nvm install v16
53
53
node -v
54
- nvm alias default v12
54
+ nvm alias default v16
55
55
- run :
56
56
name : Install Docker Compose
57
57
command : |
@@ -79,4 +79,3 @@ workflows:
79
79
- integration_tests :
80
80
requires :
81
81
- build
82
-
Original file line number Diff line number Diff line change 53
53
"uuid" : " 9.0.0"
54
54
},
55
55
"peerDependencies" : {
56
- "@nestjs/common" : " ^8.0.0 || ^9.0.0" ,
57
- "@nestjs/core" : " ^8.0.0 || ^9.0.0" ,
56
+ "@nestjs/common" : " ^8.0.0 || ^9.0.0 || ^10.0.0 " ,
57
+ "@nestjs/core" : " ^8.0.0 || ^9.0.0 || ^10.0.0 " ,
58
58
"reflect-metadata" : " ^0.1.13" ,
59
59
"rxjs" : " ^7.2.0" ,
60
60
"typeorm" : " ^0.3.0"
Original file line number Diff line number Diff line change 7
7
"noLib" : false ,
8
8
"emitDecoratorMetadata" : true ,
9
9
"experimentalDecorators" : true ,
10
- "target" : " es6 " ,
10
+ "target" : " ES2021 " ,
11
11
"sourceMap" : false ,
12
12
"outDir" : " ./dist" ,
13
13
"rootDir" : " ./lib" ,
You can’t perform that action at this time.
0 commit comments