forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into implement-smart-pipeline-in-parser
* master: remove .then from dynamic import parser exception message (babel#8355) update jest (major), babel-jest (major) (babel#8341) update prettier (babel#8339) bump flow (babel#8338) updates eslint, babel-eslint, eslint-plugin-flowtype, eslint-plugin-prettier (babel#8337) update changelog for .53/.54 [skip ci] v7.0.0-beta.54 also default stage 2 to decoratorsLegacy true [skip ci] Fix stage-0/1 import of pipeline/decorators proposals (babel#8317) Remove micromatch and use a simple pattern matching utility. Ensure that the wildcard interop is used with re-export + default. (babel#8316) Leave it to users to clear the require cache if they want to. Remove dependency on barely-used package. Add link to audio version of song (babel#8320) Remove option-filtering options from the final options results. (babel#8315) Update pirates to 4.0 (babel#8308) remove yearly preset folders [skip ci] v7.0.0-beta.53 Make env preset build-data scripts reproducible (babel#8299) TypeScript: Support type arguments on JSX opening and self-closing tags (babel#7799)
- Loading branch information
Showing
189 changed files
with
1,766 additions
and
1,413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@babel/cli", | ||
"version": "7.0.0-beta.52", | ||
"version": "7.0.0-beta.54", | ||
"description": "Babel command line.", | ||
"author": "Sebastian McKenzie <[email protected]>", | ||
"homepage": "https://babeljs.io/", | ||
|
@@ -33,8 +33,8 @@ | |
"@babel/core": ">=7.0.0-beta.50 <7.0.0-rc.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.0.0-beta.52", | ||
"@babel/helper-fixtures": "7.0.0-beta.52" | ||
"@babel/core": "7.0.0-beta.54", | ||
"@babel/helper-fixtures": "7.0.0-beta.54" | ||
}, | ||
"bin": { | ||
"babel": "./bin/babel.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"name": "@babel/code-frame", | ||
"version": "7.0.0-beta.52", | ||
"version": "7.0.0-beta.54", | ||
"description": "Generate errors that contain a code frame that point to source locations.", | ||
"author": "Sebastian McKenzie <[email protected]>", | ||
"homepage": "https://babeljs.io/", | ||
"license": "MIT", | ||
"repository": "https://github.com/babel/babel/tree/master/packages/babel-code-frame", | ||
"main": "lib/index.js", | ||
"dependencies": { | ||
"@babel/highlight": "7.0.0-beta.52" | ||
"@babel/highlight": "7.0.0-beta.54" | ||
}, | ||
"devDependencies": { | ||
"chalk": "^2.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@babel/core", | ||
"version": "7.0.0-beta.52", | ||
"version": "7.0.0-beta.54", | ||
"description": "Babel compiler core.", | ||
"main": "lib/index.js", | ||
"author": "Sebastian McKenzie <[email protected]>", | ||
|
@@ -30,24 +30,23 @@ | |
"./lib/transform-file.js": "./lib/transform-file-browser.js" | ||
}, | ||
"dependencies": { | ||
"@babel/code-frame": "7.0.0-beta.52", | ||
"@babel/generator": "7.0.0-beta.52", | ||
"@babel/helpers": "7.0.0-beta.52", | ||
"@babel/parser": "7.0.0-beta.52", | ||
"@babel/template": "7.0.0-beta.52", | ||
"@babel/traverse": "7.0.0-beta.52", | ||
"@babel/types": "7.0.0-beta.52", | ||
"@babel/code-frame": "7.0.0-beta.54", | ||
"@babel/generator": "7.0.0-beta.54", | ||
"@babel/helpers": "7.0.0-beta.54", | ||
"@babel/parser": "7.0.0-beta.54", | ||
"@babel/template": "7.0.0-beta.54", | ||
"@babel/traverse": "7.0.0-beta.54", | ||
"@babel/types": "7.0.0-beta.54", | ||
"convert-source-map": "^1.1.0", | ||
"debug": "^3.1.0", | ||
"json5": "^0.5.0", | ||
"lodash": "^4.17.5", | ||
"micromatch": "^2.3.11", | ||
"resolve": "^1.3.2", | ||
"semver": "^5.4.1", | ||
"source-map": "^0.5.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/helper-transform-fixture-test-runner": "7.0.0-beta.52", | ||
"@babel/register": "7.0.0-beta.52" | ||
"@babel/helper-transform-fixture-test-runner": "7.0.0-beta.54", | ||
"@babel/register": "7.0.0-beta.54" | ||
} | ||
} |
Oops, something went wrong.