File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
3
3
env :
4
- - FORCE_COLOR=true
4
+ global :
5
+ - FORCE_COLOR=true
6
+ matrix :
7
+ - ESLINT=5
8
+ - ESLINT=6
5
9
6
10
node_js :
7
11
- 10.12
8
12
- 12
9
- - node
13
+ - 14
14
+
15
+ before_script :
16
+ - ' if [ -n "${ESLINT-}" ]; then npm install --no-save "eslint@${ESLINT}" ; fi'
10
17
11
18
jobs :
12
19
include :
13
20
- stage : release
14
21
if : branch = master AND type != pull_request
15
- node_js : 12
22
+ node_js : 14
23
+ env : ESLINT=6
16
24
script : npm run build
17
25
deploy :
18
26
provider : script
Original file line number Diff line number Diff line change 47
47
"@typescript-eslint/eslint-plugin" : " ^2.26.0" ,
48
48
"@typescript-eslint/parser" : " ^2.26.0" ,
49
49
"cpy-cli" : " ^3.1.0" ,
50
- "eslint" : " ^6.3.0 " ,
50
+ "eslint" : " ^5 || ^6 " ,
51
51
"eslint-config-prettier" : " ^6.1.0" ,
52
52
"eslint-config-standard" : " ^14.1.0" ,
53
53
"eslint-plugin-import" : " ^2.18.2" ,
67
67
"typescript" : " ^3.8.3"
68
68
},
69
69
"peerDependencies" : {
70
- "eslint" : " >=5 "
70
+ "eslint" : " ^5 || ^6 "
71
71
},
72
72
"engines" : {
73
- "node" : " >=8 " ,
74
- "npm" : " >=5 "
73
+ "node" : " ^10.12.0 || >=12.0.0 " ,
74
+ "npm" : " >=6 "
75
75
},
76
76
"license" : " MIT"
77
77
}
You can’t perform that action at this time.
0 commit comments