Skip to content

Commit

Permalink
v7.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hzoo committed Nov 6, 2018
1 parent 2fa1984 commit afe67a7
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.11.0",
"version": "7.1.4",
"version": "7.1.5",
"changelog": {
"repo": "babel/babel",
"cacheDir": ".changelog",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/cli",
"version": "7.1.2",
"version": "7.1.5",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/core": "^7.1.5",
"@babel/helper-fixtures": "^7.0.0"
},
"bin": {
Expand Down
12 changes: 6 additions & 6 deletions packages/babel-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.1.2",
"version": "7.1.5",
"description": "Babel compiler core.",
"main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
Expand Down Expand Up @@ -34,12 +34,12 @@
},
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.1.2",
"@babel/helpers": "^7.1.2",
"@babel/parser": "^7.1.2",
"@babel/generator": "^7.1.5",
"@babel/helpers": "^7.1.5",
"@babel/parser": "^7.1.5",
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.1.2",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.1.5",
"convert-source-map": "^1.1.0",
"debug": "^3.1.0",
"json5": "^0.5.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-generator/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.1.3",
"version": "7.1.5",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -14,14 +14,14 @@
"lib"
],
"dependencies": {
"@babel/types": "^7.1.3",
"@babel/types": "^7.1.5",
"jsesc": "^2.5.1",
"lodash": "^4.17.10",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
},
"devDependencies": {
"@babel/helper-fixtures": "^7.0.0",
"@babel/parser": "^7.0.0"
"@babel/parser": "^7.1.5"
}
}
6 changes: 3 additions & 3 deletions packages/babel-helpers/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helpers",
"version": "7.1.2",
"version": "7.1.5",
"description": "Collection of helper functions used by Babel transforms.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -12,8 +12,8 @@
"main": "lib/index.js",
"dependencies": {
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.1.2"
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.1.5"
},
"devDependencies": {
"@babel/helper-plugin-test-runner": "^7.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/parser",
"version": "7.1.3",
"version": "7.1.5",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-plugin-syntax-typescript/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-typescript",
"version": "7.0.0",
"version": "7.1.5",
"description": "Allow parsing of TypeScript syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-typescript",
"license": "MIT",
Expand All @@ -19,6 +19,6 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.0.0"
"@babel/core": "^7.1.5"
}
}
4 changes: 2 additions & 2 deletions packages/babel-plugin-transform-block-scoping/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-block-scoping",
"version": "7.0.0",
"version": "7.1.5",
"description": "Compile ES2015 block scoping (const and let) to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping",
"license": "MIT",
Expand All @@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/core": "^7.1.5",
"@babel/helper-plugin-test-runner": "^7.0.0"
}
}
8 changes: 4 additions & 4 deletions packages/babel-preset-env/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/preset-env",
"version": "7.1.0",
"version": "7.1.5",
"description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -27,7 +27,7 @@
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-block-scoped-functions": "^7.0.0",
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/plugin-transform-block-scoping": "^7.1.5",
"@babel/plugin-transform-classes": "^7.1.0",
"@babel/plugin-transform-computed-properties": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
Expand Down Expand Up @@ -60,8 +60,8 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/helper-fixtures": "^7.0.0",
"@babel/helper-plugin-test-runner": "^7.0.0",
"caniuse-db": "1.0.30000851",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-runtime-corejs2/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/runtime-corejs2",
"version": "7.1.2",
"version": "7.1.5",
"description": "babel's modular runtime helpers with core-js@2 polyfilling",
"license": "MIT",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-runtime/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/runtime",
"version": "7.1.2",
"version": "7.1.5",
"description": "babel's modular runtime helpers",
"license": "MIT",
"publishConfig": {
Expand Down
8 changes: 4 additions & 4 deletions packages/babel-traverse/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/traverse",
"version": "7.1.4",
"version": "7.1.5",
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -12,11 +12,11 @@
"main": "lib/index.js",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.1.3",
"@babel/generator": "^7.1.5",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.1.3",
"@babel/types": "^7.1.3",
"@babel/parser": "^7.1.5",
"@babel/types": "^7.1.5",
"debug": "^3.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.10"
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-types/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/types",
"version": "7.1.3",
"version": "7.1.5",
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -14,7 +14,7 @@
"to-fast-properties": "^2.0.0"
},
"devDependencies": {
"@babel/generator": "^7.0.0",
"@babel/parser": "^7.0.0"
"@babel/generator": "^7.1.5",
"@babel/parser": "^7.1.5"
}
}

0 comments on commit afe67a7

Please sign in to comment.