Skip to content

Commit

Permalink
⚡ improvement(npm): revert node >= 6.0 engine restriction (#110) by @…
Browse files Browse the repository at this point in the history
…syxolk

* 🔙 config(npm): revert node >= 6.0 engine restriction

Partially revert commit a2ec64f that introduced
backwards-incompatible change in 5.0.1.

Fixes #109

* 💚 test: add 'use strict' to fix tests for node 4
  • Loading branch information
syxolk authored and kazupon committed Feb 18, 2017
1 parent c41aa13 commit 92b1bd1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions config/build.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict'
const fs = require('fs')
const exist = fs.existsSync
const mkdir = fs.mkdirSync
Expand Down
1 change: 1 addition & 0 deletions config/bundle.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict'
const fs = require('fs')
const readFile = fs.readFile
const writeFile = fs.writeFile
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.1"
},
"engines": {
"node": ">= 6.0"
},
"files": [
"dist/vue-i18n.js",
"dist/vue-i18n.min.js",
Expand Down
1 change: 1 addition & 0 deletions test/e2e/runner.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict'
const path = require('path')
const spawn = require('cross-spawn')
const httpServer = require('http-server')
Expand Down

0 comments on commit 92b1bd1

Please sign in to comment.