-
Notifications
You must be signed in to change notification settings - Fork 26
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 dependencies #176
update dependencies #176
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,26 +36,26 @@ | |
"ES2016" | ||
], | ||
"dependencies": { | ||
"babel-runtime": "5.6.20", | ||
"bluebird": "^2.9.33", | ||
"babel-runtime": "^5.8.29", | ||
"bluebird": "^3.0.1", | ||
"browser-sync": "^2.7.13", | ||
"chokidar": "^1.0.3", | ||
"cli-color": "^1.0.0", | ||
"co": "^3.1.0", | ||
"co": "^4.6.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Didn't this change break the config method in the past? I believe the best course of action would be to completely remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, you're right. |
||
"co-prompt": "^1.0.0", | ||
"commander": "^2.8.1", | ||
"dedent": "^0.4.0", | ||
"less": "^2.5.1", | ||
"marked-metadata": "0.0.6", | ||
"mkdirp": "^0.5.1", | ||
"ncp": "^2.0.0", | ||
"npm": "^2.13.0", | ||
"nunjucks": "^1.3.4", | ||
"npm": "^3.3.9", | ||
"nunjucks": "^2.1.0", | ||
"open": "0.0.5", | ||
"permalinks": "^0.3.1", | ||
"pretty-ms": "^1.4.0", | ||
"pretty-ms": "^2.1.0", | ||
"rimraf": "^2.4.1", | ||
"stylus": "^0.51.1" | ||
"stylus": "^0.52.4" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^3.1.23", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The babel-runtime version is automatically bumped by the
preversion
script (which invokes theupdate-babel
script). The reasoning for this is explained here: JSRocksHQ/slush-es20xx#30There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In other words, better not touch the babel-runtime version here as it will be overwritten before we release a new version of Harmonic anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it 👍