Skip to content

Commit 884106c

Browse files
authored
chore: Upgrade to node 10 (#1731)
chore: Upgrade to node 10
2 parents 7f6fbd9 + 1c08248 commit 884106c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"presets": [
33
["@babel/env", {
4-
"targets": {"node": "8"}
4+
"targets": {"node": "10"}
55
}],
66
"@babel/flow"
77
],

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ os:
66
- windows
77

88
node_js:
9-
- '8'
109
- '10'
10+
- '12'
1111

1212
# Skip node_js 6 on travis windows workers (as it often fails because
1313
# travis fails to init the node_js 6 environment).
1414
matrix:
1515
fast_finish: true
1616
exclude:
17-
- node_js: '8'
17+
- node_js: '10'
1818
os: windows
1919

2020
jobs:
2121
include:
2222
- stage: npm audit and lint github PR title
2323
## Keep this in sync with the last version listed in the node_js property.
24-
node_js: '10'
24+
node_js: '12'
2525
os: linux
2626
script:
2727
- npm run audit-deps
2828
- npm run travis-pr-title-lint
2929
- stage: deploy on npm
3030
## Keep this in sync with the last version listed in the node_js property.
31-
node_js: '10'
31+
node_js: '12'
3232
os: linux
3333
script: echo "Deploying to npm..."
3434
## Make sure we have a production build.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ version on the command line with this:
7373
## Installation from source
7474

7575
You'll need:
76-
* [Node.js](https://nodejs.org/en/), 8.0.0 or higher
77-
* [npm](https://www.npmjs.com/), 5.0.0 or higher is recommended
76+
* [Node.js](https://nodejs.org/en/), 10.0.0 or higher
77+
* [npm](https://www.npmjs.com/), 5.6.0 or higher is recommended
7878

7979
Optionally, you may like:
8080
* [nvm](https://github.com/creationix/nvm), which helps manage node versions

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"description": "A command line tool to help build, run, and test web extensions",
55
"main": "dist/web-ext.js",
66
"engines": {
7-
"node": ">=8.0.0",
8-
"npm": ">=5.0.0"
7+
"node": ">=10.0.0",
8+
"npm": ">=5.6.0"
99
},
1010
"engine-strict": true,
1111
"bin": {

0 commit comments

Comments
 (0)