Skip to content

Commit

Permalink
Support for Node v8 (TryGhost#9183)
Browse files Browse the repository at this point in the history
no issue

- bump dependencies because of failing tests
- added package-lock.json to gitignore, because we use yarn
- run v8 on travis
- support v8 engine in package.json
  • Loading branch information
kirrg001 authored and kevinansfield committed Oct 26, 2017
1 parent 88eab98 commit 07dcbb0
Show file tree
Hide file tree
Showing 4 changed files with 326 additions and 134 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ b-cov
pids
results

package-lock.json
npm-debug.log
node_modules
bower_components
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js
# When changing node version also update it on lines 34, 36 and 46.
node_js:
- "8"
- "6"
- "4"

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"init": "yarn global add knex-migrator ember-cli grunt-cli && yarn install && grunt symlink && grunt init || true"
},
"engines": {
"node": "^4.5.0 || ^6.9.0"
"node": "^4.5.0 || ^6.9.0 || ^8.8.0"
},
"dependencies": {
"amperize": "0.3.5",
Expand All @@ -50,18 +50,18 @@
"extract-zip-fork": "1.5.1",
"fs-extra": "3.0.1",
"ghost-gql": "0.0.8",
"ghost-ignition": "2.8.14",
"ghost-ignition": "2.8.16",
"ghost-storage-base": "0.0.1",
"glob": "5.0.15",
"got": "7.1.0",
"gscan": "1.2.0",
"gscan": "1.2.1",
"html-to-text": "3.3.0",
"image-size": "0.6.1",
"intl": "1.2.5",
"intl-messageformat": "1.3.0",
"jsonpath": "0.2.12",
"knex": "0.12.9",
"knex-migrator": "2.1.8",
"knex-migrator": "2.1.9",
"lodash": "4.17.4",
"markdown-it": "8.4.0",
"markdown-it-footnote": "3.0.1",
Expand Down
Loading

0 comments on commit 07dcbb0

Please sign in to comment.