Skip to content

Commit

Permalink
feat: drop node 6
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node versions <8 are no longer supported.
  • Loading branch information
Bo Lingen committed Jan 15, 2019
1 parent f8ab779 commit ae79299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .babelrc.js
Expand Up @@ -7,7 +7,7 @@ const isDev = !isEsm && env !== 'production'

const presets = [
['@babel/env', {
targets: { node: isDev || 6 },
targets: { node: isDev || 8 },
loose: true,
modules: isEsm ? false : 'commonjs'
}]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"homepage": "https://github.com/citycide/stunsail",
"bugs": "https://github.com/citycide/stunsail/issues",
"engines": {
"node": ">=6"
"node": ">=8"
},
"main": "index.js",
"module": "es/index.js",
Expand Down

0 comments on commit ae79299

Please sign in to comment.