Skip to content

Commit 2591775

Browse files
committed
fix: support Node.js 8.9+
1 parent b16c059 commit 2591775

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [12.x, 14.x]
18+
node-version: [8.x, 10.x, 12.x, 14.x]
1919

2020
steps:
2121
- uses: actions/checkout@v2

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@types/jscodeshift": "^0.7.1",
2626
"@vue/compiler-sfc": "^3.0.0-beta.15",
2727
"debug": "^4.1.1",
28-
"globby": "^11.0.0",
28+
"globby": "^10.0.2",
2929
"inquirer": "^7.0.3",
3030
"jscodeshift": "^0.10.0",
3131
"vue": "^3.0.0-beta.15",
@@ -54,6 +54,6 @@
5454
"singleQuote": true
5555
},
5656
"engines": {
57-
"node": ">= 12.2.0"
57+
"node": ">= 8.9"
5858
}
5959
}

0 commit comments

Comments
 (0)