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

chore: Update babel to 7.0.0-beta.49 #872

Merged
merged 2 commits into from Jun 11, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Expand Up @@ -72,9 +72,9 @@ State how you're using babel-minify.

`babel-minify CLI`

babel-minify version: `0.4.1`
babel-minify version: `0.4.3`

babel version : `7.0.0-beta.46`
babel version : `7.0.0-beta.49`

babel-minify-config:

Expand Down
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -19,9 +19,9 @@
"watch": "gulp watch"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-transform-block-scoping": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.49",
"@babel/plugin-transform-block-scoping": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"butternut": "^0.4.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-minify/package.json
Expand Up @@ -18,7 +18,7 @@
},
"repository": "https://github.com/babel/minify/tree/master/packages/babel-minify",
"dependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.49",
"babel-preset-minify": "^0.4.3",
"fs-readdir-recursive": "^1.1.0",
"lodash.pick": "^4.4.0",
Expand Down
Expand Up @@ -99,7 +99,7 @@ describe("simplify-plugin", () => {
`,
`
a = false;
a = NaN;
a = 0 / 0;
a = 0;
a = undefined;
a = 0;
Expand Down Expand Up @@ -199,7 +199,7 @@ describe("simplify-plugin", () => {
`
a = foo;
a = console.log("asdf");
a = NaN;
a = 0 / 0;
a = undefined;
a = 5 << foo;
`
Expand Down
2 changes: 1 addition & 1 deletion packages/gulp-babel-minify/package.json
Expand Up @@ -13,7 +13,7 @@
"main": "lib/index.js",
"repository": "https://github.com/babel/minify/tree/master/packages/gulp-babel-minify",
"dependencies": {
"@babel/core": "7.0.0-beta.46",
"@babel/core": "7.0.0-beta.49",
"babel-preset-minify": "^0.4.3",
"plugin-error": "^1.0.1",
"through2": "^2.0.3",
Expand Down