Skip to content

Commit 22f4a58

Browse files
committedJan 31, 2019
fix: support node 6
1 parent d93156f commit 22f4a58

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed
 

‎bili.config.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ const config: Config = {
1010
externals: [
1111
...Object.keys(require('./package').dependencies),
1212
'spawn-sync' // from cross-spawn which is from execa which is from term-size which is from boxen
13-
],
14-
babel: {
15-
asyncToPromises: false
16-
}
13+
]
1714
}
1815

1916
export default config

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"author": "egoist<0x142857@gmail.com>",
2929
"license": "MIT",
3030
"browserslist": [
31-
"node 8"
31+
"node 6"
3232
],
3333
"dependencies": {
3434
"@babel/core": "^7.2.2",
@@ -118,7 +118,7 @@
118118
]
119119
},
120120
"engines": {
121-
"node": ">=8"
121+
"node": ">=6"
122122
},
123123
"watch": {
124124
"./src/**/*.ts": [

0 commit comments

Comments
 (0)
Please sign in to comment.