Skip to content

Commit

Permalink
v7.0.0-beta.43
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Apr 2, 2018
1 parent 47ada5a commit bdfeeb3
Show file tree
Hide file tree
Showing 140 changed files with 858 additions and 849 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-codemod-optional-catch-binding",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Remove unused catch bindings",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-remove-unused-catch-binding",
"license": "MIT",
Expand All @@ -9,13 +9,13 @@
"@babel/plugin"
],
"dependencies": {
"@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.42"
"@babel/plugin-syntax-optional-catch-binding": "7.0.0-beta.43"
},
"peerDependencies": {
"@babel/core": "7.0.0-beta.42"
"@babel/core": "7.0.0-beta.43"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@babel/helper-plugin-test-runner": "7.0.0-beta.42"
"@babel/core": "7.0.0-beta.43",
"@babel/helper-plugin-test-runner": "7.0.0-beta.43"
}
}
17 changes: 13 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0-rc.4",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"changelog": {
"repo": "babel/babel",
"labels": {
Expand All @@ -16,10 +16,19 @@
"cacheDir": ".changelog",
"commands": {
"publish": {
"ignore": ["*.md", "test/**", "codemods/**"]
"ignore": [
"*.md",
"test/**",
"codemods/**"
]
}
},
"packages": ["packages/*", "codemods/*"],
"packages": [
"packages/*",
"codemods/*"
],
"npmClient": "yarn",
"npmClientArgs": ["--no-lockfile"]
"npmClientArgs": [
"--no-lockfile"
]
}
8 changes: 4 additions & 4 deletions packages/babel-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/cli",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down Expand Up @@ -29,11 +29,11 @@
"chokidar": "^1.6.1"
},
"peerDependencies": {
"@babel/core": "7.0.0-beta.42"
"@babel/core": "7.0.0-beta.43"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42",
"@babel/helper-fixtures": "7.0.0-beta.42"
"@babel/core": "7.0.0-beta.43",
"@babel/helper-fixtures": "7.0.0-beta.43"
},
"bin": {
"babel": "./bin/babel.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-code-frame/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@babel/code-frame",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Generate errors that contain a code frame that point to source locations.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"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.42"
"@babel/highlight": "7.0.0-beta.43"
},
"devDependencies": {
"chalk": "^2.0.0",
Expand Down
20 changes: 10 additions & 10 deletions packages/babel-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Babel compiler core.",
"main": "./lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
Expand Down Expand Up @@ -28,13 +28,13 @@
"./lib/transform-file-sync.js": "./lib/transform-file-sync-browser.js"
},
"dependencies": {
"@babel/code-frame": "7.0.0-beta.42",
"@babel/generator": "7.0.0-beta.42",
"@babel/helpers": "7.0.0-beta.42",
"@babel/template": "7.0.0-beta.42",
"@babel/traverse": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42",
"babylon": "7.0.0-beta.42",
"@babel/code-frame": "7.0.0-beta.43",
"@babel/generator": "7.0.0-beta.43",
"@babel/helpers": "7.0.0-beta.43",
"@babel/template": "7.0.0-beta.43",
"@babel/traverse": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43",
"babylon": "7.0.0-beta.43",
"convert-source-map": "^1.1.0",
"debug": "^3.1.0",
"json5": "^0.5.0",
Expand All @@ -45,7 +45,7 @@
"source-map": "^0.5.0"
},
"devDependencies": {
"@babel/helper-transform-fixture-test-runner": "7.0.0-beta.42",
"@babel/register": "7.0.0-beta.42"
"@babel/helper-transform-fixture-test-runner": "7.0.0-beta.43",
"@babel/register": "7.0.0-beta.43"
}
}
8 changes: 4 additions & 4 deletions packages/babel-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -11,14 +11,14 @@
"lib"
],
"dependencies": {
"@babel/types": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.43",
"jsesc": "^2.5.1",
"lodash": "^4.2.0",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
},
"devDependencies": {
"@babel/helper-fixtures": "7.0.0-beta.42",
"babylon": "7.0.0-beta.42"
"@babel/helper-fixtures": "7.0.0-beta.43",
"babylon": "7.0.0-beta.43"
}
}
4 changes: 2 additions & 2 deletions packages/babel-helper-annotate-as-pure/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@babel/helper-annotate-as-pure",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to annotate paths and nodes with #__PURE__ comment",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-annotate-as-pure",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/types": "7.0.0-beta.42"
"@babel/types": "7.0.0-beta.43"
}
}
6 changes: 3 additions & 3 deletions packages/babel-helper-bindify-decorators/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@babel/helper-bindify-decorators",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to bindify decorators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-bindify-decorators",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/traverse": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/traverse": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@babel/helper-builder-binary-assignment-operator-visitor",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to build binary assignment operator visitors",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-explode-assignable-expression": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/helper-explode-assignable-expression": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
4 changes: 2 additions & 2 deletions packages/babel-helper-builder-react-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@babel/helper-builder-react-jsx",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to build react jsx",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/types": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.43",
"esutils": "^2.0.0"
}
}
8 changes: 4 additions & 4 deletions packages/babel-helper-call-delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@babel/helper-call-delegate",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to call delegate",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-hoist-variables": "7.0.0-beta.42",
"@babel/traverse": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/helper-hoist-variables": "7.0.0-beta.43",
"@babel/traverse": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
6 changes: 3 additions & 3 deletions packages/babel-helper-define-map/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@babel/helper-define-map",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to define a map",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-define-map",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-function-name": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42",
"@babel/helper-function-name": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43",
"lodash": "^4.2.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@babel/helper-explode-assignable-expression",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to explode an assignable expression",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/traverse": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/traverse": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
8 changes: 4 additions & 4 deletions packages/babel-helper-explode-class/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@babel/helper-explode-class",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to explode class",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-explode-class",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-bindify-decorators": "7.0.0-beta.42",
"@babel/traverse": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/helper-bindify-decorators": "7.0.0-beta.43",
"@babel/traverse": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
2 changes: 1 addition & 1 deletion packages/babel-helper-fixtures/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-fixtures",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to support fixtures",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions packages/babel-helper-function-name/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@babel/helper-function-name",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to change the property 'name' of every function",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-function-name",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-get-function-arity": "7.0.0-beta.42",
"@babel/template": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42"
"@babel/helper-get-function-arity": "7.0.0-beta.43",
"@babel/template": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43"
}
}
4 changes: 2 additions & 2 deletions packages/babel-helper-get-function-arity/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@babel/helper-get-function-arity",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to get function arity",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/types": "7.0.0-beta.42"
"@babel/types": "7.0.0-beta.43"
}
}
4 changes: 2 additions & 2 deletions packages/babel-helper-hoist-variables/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@babel/helper-hoist-variables",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Helper function to hoist variables",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables",
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"@babel/types": "7.0.0-beta.42"
"@babel/types": "7.0.0-beta.43"
}
}
6 changes: 3 additions & 3 deletions packages/babel-helper-module-imports/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@babel/helper-module-imports",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Babel helper functions for inserting module loads",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-imports",
"main": "lib/index.js",
"dependencies": {
"@babel/types": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.43",
"lodash": "^4.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.42"
"@babel/core": "7.0.0-beta.43"
}
}
12 changes: 6 additions & 6 deletions packages/babel-helper-module-transforms/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@babel/helper-module-transforms",
"version": "7.0.0-beta.42",
"version": "7.0.0-beta.43",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-module-transforms",
"main": "lib/index.js",
"dependencies": {
"@babel/helper-module-imports": "7.0.0-beta.42",
"@babel/helper-simple-access": "7.0.0-beta.42",
"@babel/helper-split-export-declaration": "7.0.0-beta.42",
"@babel/template": "7.0.0-beta.42",
"@babel/types": "7.0.0-beta.42",
"@babel/helper-module-imports": "7.0.0-beta.43",
"@babel/helper-simple-access": "7.0.0-beta.43",
"@babel/helper-split-export-declaration": "7.0.0-beta.43",
"@babel/template": "7.0.0-beta.43",
"@babel/types": "7.0.0-beta.43",
"lodash": "^4.2.0"
}
}

0 comments on commit bdfeeb3

Please sign in to comment.