Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deps and drop Node 4 support #205

Merged
merged 8 commits into from
Aug 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/utils/result-summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const CoreObject = require('core-object');
const chalk = require('chalk');
const Table = require('cli-table2');
const Table = require('cli-table3');

module.exports = CoreObject.extend({
print() {
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"repository": "ember-cli/ember-try",
"engines": {
"node": "^4.5 || 6.* || >= 7.*"
"node": "6.* || >= 7.*"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7 is no longer supported, it should be 6, 8 and 10: "6.* || 8.* || >= 10.*"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a follow-on PR to update the blueprint, just fixed it enough so that tests would run.

},
"author": "Katie Gengler",
"license": "MIT",
Expand All @@ -44,14 +44,14 @@
"ember-load-initializers": "^1.0.0",
"ember-resolver": "^4.0.0",
"ember-source": "~2.18.0",
"eslint": "^4.15.0",
"eslint": "^5.4.0",
"eslint-plugin-ember": "^5.0.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-node": "^7.0.1",
"glob": "^7.0.0",
"loader.js": "^4.2.3",
"mocha": "^4.0.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"nyc": "^11.4.1",
"nyc": "^13.0.1",
"tmp-sync": "^1.1.0"
},
"keywords": [
Expand All @@ -60,11 +60,11 @@
],
"dependencies": {
"chalk": "^2.3.0",
"cli-table3": "^0.4.0",
"cli-table3": "^0.5.1",
"core-object": "^3.1.5",
"debug": "^3.1.0",
"ember-try-config": "^3.0.0",
"execa": "^0.10.0",
"execa": "^1.0.0",
"extend": "^3.0.0",
"fs-extra": "^5.0.0",
"promise-map-series": "^0.2.1",
Expand Down
Loading