-
Notifications
You must be signed in to change notification settings - Fork 17
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 to latest version #43
Conversation
Add Node 12 & 14 in Travis.
@@ -21,24 +21,24 @@ | |||
"lib/" | |||
], | |||
"dependencies": { | |||
"archiver": "^4.0.2", | |||
"archiver": "^5.3.0", |
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.
what changed between archiver 4 and 5?
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.
- Dropped Node < 10
- Use of
readdir-glob
instead ofglob
be memory efficient
And some deps updated
Hey @j0k3r, thanks for this! I think it's mostly good, although since
|
The only breaking change from
But I don't think it affects bestzip. About ESLint, for now there are sill allowing Node 10:
I'll work on upgrading ESLint and their friends too |
A lot of files changed following these update. One manual fix was to add `"use strict";` in `.eslintrc.js` file because of: ``` /Users/j0k/Sites/github/node-bestzip/.eslintrc.js 1:1 error Use the global form of 'use strict' strict /Users/j0k/Sites/github/node-bestzip/bin/.eslintrc.js 1:1 error Use the global form of 'use strict' strict /Users/j0k/Sites/github/node-bestzip/test/.eslintrc.js 1:1 error Use the global form of 'use strict' strict ``` Also: - revert previous changes in Travis. - add a minimum node version (>=10)
Which was `error Delete `␍` prettier/prettier`
"prettier/prettier": [ | ||
"error", | ||
{ | ||
endOfLine: "auto", |
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.
TIL! 'auto' seems fine for now.
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.
Nice work, thanks!
Should be published as v2.2.0 shortly |
Add Node 12 & 14 in Travis.
Here are the missing one (for now):