Commit 18513b7 1 parent 589f53f commit 18513b7 Copy full SHA for 18513b7
File tree 4 files changed +561
-561
lines changed
4 files changed +561
-561
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
jobs :
3
- test-node-8 :
4
- docker :
5
- - image : circleci/node:8
6
- working_directory : ~/project
7
- steps :
8
- - checkout
9
- - restore_cache :
10
- keys :
11
- - yarn-cache-8-{{ .Branch }}-{{ checksum "yarn.lock" }}
12
- - yarn-cache-8-{{ .Branch }}
13
- - yarn-cache-8-
14
- - run : yarn install
15
- - save_cache :
16
- key : yarn-cache-8-{{ .Branch }}-{{ checksum "yarn.lock" }}
17
- paths : [node_modules]
18
- - run : yarn test
19
-
20
3
test-node-10 :
21
4
docker :
22
5
- image : circleci/node:10
34
17
paths : [node_modules]
35
18
- run : yarn test
36
19
37
- test-latest( node-12) :
20
+ test-node-12 :
38
21
docker :
39
22
- image : circleci/node:12
40
23
working_directory : ~/project
70
53
- store_test_results :
71
54
path : ./coverage/clover.xml
72
55
56
+ test-node-latest :
57
+ docker :
58
+ - image : circleci/node
59
+ working_directory : ~/project
60
+ steps :
61
+ - checkout
62
+ - restore_cache :
63
+ keys :
64
+ - yarn-cache-latest-{{ .Branch }}-{{ checksum "yarn.lock" }}
65
+ - yarn-cache-latest-{{ .Branch }}
66
+ - yarn-cache-latest-
67
+ - run : yarn install
68
+ - save_cache :
69
+ key : yarn-cache-latest-{{ .Branch }}-{{ checksum "yarn.lock" }}
70
+ paths : [node_modules]
71
+ - run : yarn test
72
+
73
73
validate-dependencies :
74
74
docker :
75
75
- image : circleci/node:12
@@ -204,9 +204,9 @@ workflows:
204
204
version : 2
205
205
build-test-publish :
206
206
jobs :
207
- - test-latest(node-12)
208
207
- test-node-10
209
- - test-node-8
208
+ - test-node-12
209
+ - test-node-latest
210
210
- validate-all-dependencies :
211
211
filters :
212
212
branches :
@@ -222,18 +222,16 @@ workflows:
222
222
- release :
223
223
requires :
224
224
- validate-dependencies
225
- - test-latest( node-12)
225
+ - test-node-12
226
226
- test-node-10
227
- - test-node-8
228
227
filters :
229
228
branches :
230
229
only :
231
230
- master
232
231
- prerelease :
233
232
requires :
234
- - test-latest( node-12)
233
+ - test-node-12
235
234
- test-node-10
236
- - test-node-8
237
235
filters :
238
236
tags :
239
237
ignore : /.*/
Original file line number Diff line number Diff line change 2
2
"extends" : " ./tsconfig.strict" ,
3
3
"compilerOptions" : {
4
4
"module" : " commonjs" ,
5
- "target" : " es6 " ,
5
+ "target" : " es2018 " ,
6
6
"noImplicitAny" : true ,
7
7
"moduleResolution" : " node" ,
8
8
"sourceMap" : true ,
23
23
"traceResolution" : false ,
24
24
"pretty" : true ,
25
25
"lib" : [
26
- " es6 "
26
+ " ES2018 "
27
27
],
28
28
"types" : [
29
29
" node" ,
Original file line number Diff line number Diff line change 76
76
"license-validate" : " Validate licenses for dependencies."
77
77
},
78
78
"engines" : {
79
- "node" : " >=4.5 "
79
+ "node" : " >=10.10 "
80
80
},
81
81
"files" : [
82
82
" /dist" ,
98
98
"npm-scripts-info" : " 0.3.9" ,
99
99
"open-cli" : " ^5.0.0" ,
100
100
"sleep-ms" : " ^2.0.1" ,
101
- "standard-version" : " ^7.0.0 " ,
101
+ "standard-version" : " ^7.1 " ,
102
102
"trash-cli" : " ^3.0.0" ,
103
103
"ts-jest" : " ^24.0.0" ,
104
104
"tslint" : " ^5.18.0" ,
114
114
],
115
115
"dependencies" : {
116
116
"atem-connection" : " 1.1.0" ,
117
- "tslib" : " ^1.9.2 "
117
+ "tslib" : " ^1.13 "
118
118
},
119
119
"standard-version" : {
120
120
"message" : " chore(release): %s [skip ci]" ,
You can’t perform that action at this time.
0 commit comments