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

Upgraded all dependencies, removed node 6 & 8 from travis config #88

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: node_js
node_js:
- "node"
- "8"
- "6"
- "12"
Copy link

Choose a reason for hiding this comment

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

maybe node js v14 should be added here as its current LTS?

Choose a reason for hiding this comment

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

@ryanwillis Could you please add this as well?

Copy link
Author

Choose a reason for hiding this comment

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

Done.

- "10"
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,20 @@
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"jest-worker": "^24.0.0",
"serialize-javascript": "^2.1.2",
"uglify-js": "^3.4.9"
"@babel/code-frame": "^7.12.11",
"jest-worker": "^26.6.2",
"serialize-javascript": "^5.0.1",
"uglify-js": "^3.12.4"
},
"peerDependencies": {
"rollup": ">=0.66.0 <2"
"rollup": "^2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.0.0",
"jest": "^24.0.0",
"prettier": "^1.16.1",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^1.27.10"
}
}
1 change: 0 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ test("throw error on uglify fail", async () => {
test("works with code splitting", async () => {
const bundle = await rollup({
input: ["test/fixtures/chunk-1.js", "test/fixtures/chunk-2.js"],
experimentalCodeSplitting: true,
plugins: [uglify()]
});
const { output } = await bundle.generate({ format: "esm" });
Expand Down