Skip to content

Commit

Permalink
chore: Update babel to 7.0.0-beta.49 (#872)
Browse files Browse the repository at this point in the history
* chore: update babel to beta.49

* test: Update test based on new babel output
  • Loading branch information
pmdartus authored and boopathi committed Jun 11, 2018
1 parent 2e0de17 commit a24dd06
Show file tree
Hide file tree
Showing 6 changed files with 420 additions and 370 deletions.
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

0 comments on commit a24dd06

Please sign in to comment.