Skip to content

Commit

Permalink
Update generator dependencies (#432)
Browse files Browse the repository at this point in the history
* Fixes #431

* Use only LTS versions of Node, ensure compatibility with ESLint
  • Loading branch information
luboskmetko authored Jul 22, 2019
1 parent ad38f7e commit 6081e86
Show file tree
Hide file tree
Showing 4 changed files with 1,206 additions and 358 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: node_js
node_js:
- "10"
- "9"
- "8"
addons:
apt:
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"normalize-scss": "^7.0.1"
},
"engines": {
"node": ">=8"
"node": "^8.10.0 || ^10.13.0"
},
"pre-commit": [
"lint"
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,25 @@
"prepublish": "php -r \"copy('https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar', 'helpers/wp-cli.phar'); if(!file_exists('helpers/wp-cli.phar')) exit(1);\""
},
"dependencies": {
"async": "^2.6.1",
"chalk": "^2.4.1",
"async": "^2.6.3",
"chalk": "^2.4.2",
"command-exists": "^1.2.8",
"fs-extra": "^7.0.1",
"fs-extra": "^8.1.0",
"limax": "^1.7.0",
"lodash": "^4.17.11",
"mysql": "^2.16.0",
"update-notifier": "^2.5.0",
"yeoman-generator": "^3.1.1"
"lodash": "^4.17.15",
"mysql": "^2.17.1",
"update-notifier": "^3.0.1",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"cross-spawn": "^6.0.5",
"eslint": "^5.16.0",
"mocha": "^5.2.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
"yeoman-test": "^2.0.0"
},
"engines": {
"node": ">=8"
"node": "^8.10.0 || ^10.13.0"
},
"repository": "[email protected]:xfiveco/generator-chisel.git",
"license": "MIT"
Expand Down
Loading

0 comments on commit 6081e86

Please sign in to comment.