Skip to content

Commit

Permalink
v7.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Dec 15, 2018
1 parent 7bcd62c commit c1499b1
Show file tree
Hide file tree
Showing 15 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.11.0",
"version": "7.2.1",
"version": "7.2.2",
"changelog": {
"repo": "babel/babel",
"cacheDir": ".changelog",
Expand Down
12 changes: 6 additions & 6 deletions packages/babel-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.2.0",
"version": "7.2.2",
"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.2.0",
"@babel/generator": "^7.2.2",
"@babel/helpers": "^7.2.0",
"@babel/parser": "^7.2.0",
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.6",
"@babel/types": "^7.2.0",
"@babel/parser": "^7.2.2",
"@babel/template": "^7.2.2",
"@babel/traverse": "^7.2.2",
"@babel/types": "^7.2.2",
"convert-source-map": "^1.1.0",
"debug": "^4.1.0",
"json5": "^2.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-generator/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.2.0",
"version": "7.2.2",
"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.2.0",
"@babel/types": "^7.2.2",
"jsesc": "^2.5.1",
"lodash": "^4.17.10",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
},
"devDependencies": {
"@babel/helper-fixtures": "^7.2.0",
"@babel/parser": "^7.2.0"
"@babel/parser": "^7.2.2"
}
}
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-class-features-plugin",
"version": "7.2.1",
"version": "7.2.2",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
"description": "Compile class public and private fields, private methods and decorators to ES6",
Expand All @@ -24,7 +24,7 @@
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-test-runner": "^7.0.0"
}
}
6 changes: 3 additions & 3 deletions packages/babel-helper-module-transforms/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-module-transforms",
"version": "7.1.0",
"version": "7.2.2",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -14,8 +14,8 @@
"@babel/helper-module-imports": "^7.0.0",
"@babel/helper-simple-access": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/template": "^7.1.0",
"@babel/types": "^7.0.0",
"@babel/template": "^7.2.2",
"@babel/types": "^7.2.2",
"lodash": "^4.17.10"
}
}
4 changes: 2 additions & 2 deletions packages/babel-node/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/node",
"version": "7.2.0",
"version": "7.2.2",
"description": "Babel command line",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-fixtures": "^7.2.0",
"fs-readdir-recursive": "^1.0.0",
"output-file-sync": "^2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/parser",
"version": "7.2.0",
"version": "7.2.2",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-plugin-proposal-decorators/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-decorators",
"version": "7.2.0",
"version": "7.2.2",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"license": "MIT",
"publishConfig": {
Expand All @@ -15,15 +15,15 @@
"decorators"
],
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.2.2",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-create-class-features-plugin": "^7.2.1",
"@babel/plugin-syntax-decorators": "^7.2.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-test-runner": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/babel-plugin-transform-classes/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-classes",
"version": "7.2.0",
"version": "7.2.2",
"description": "Compile ES2015 classes to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes",
"license": "MIT",
Expand All @@ -25,7 +25,7 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-test-runner": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/babel-plugin-transform-spread/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-spread",
"version": "7.2.0",
"version": "7.2.2",
"description": "Compile ES2015 spread to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-spread",
"license": "MIT",
Expand All @@ -18,7 +18,7 @@
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-test-runner": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions packages/babel-preset-env-standalone/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/preset-env-standalone",
"version": "7.0.0",
"version": "7.2.2",
"description": "Standalone build of babel-prest-env for use in non-Node.js environments.",
"main": "babel-preset-env.js",
"files": [
Expand All @@ -12,7 +12,7 @@
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-transform-new-target": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/standalone": "^7.0.0"
"@babel/standalone": "^7.2.2"
},
"keywords": [
"babel",
Expand Down
10 changes: 5 additions & 5 deletions packages/babel-standalone/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/standalone",
"version": "7.2.0",
"version": "7.2.2",
"description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "babel.js",
"files": [
Expand All @@ -9,12 +9,12 @@
"src"
],
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.2",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
Expand Down Expand Up @@ -50,7 +50,7 @@
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.2.0",
"@babel/plugin-transform-classes": "^7.2.0",
"@babel/plugin-transform-classes": "^7.2.2",
"@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/plugin-transform-dotall-regex": "^7.2.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-sticky-regex": "^7.2.0",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/babel-template/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/template",
"version": "7.1.2",
"version": "7.2.2",
"description": "Generate an AST from a string template.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -12,7 +12,7 @@
"main": "lib/index.js",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.1.2",
"@babel/types": "^7.1.2"
"@babel/parser": "^7.2.2",
"@babel/types": "^7.2.2"
}
}
8 changes: 4 additions & 4 deletions packages/babel-traverse/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/traverse",
"version": "7.1.6",
"version": "7.2.2",
"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.6",
"@babel/generator": "^7.2.2",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.1.6",
"@babel/types": "^7.1.6",
"@babel/parser": "^7.2.2",
"@babel/types": "^7.2.2",
"debug": "^4.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.2.0",
"version": "7.2.2",
"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.2.0",
"@babel/parser": "^7.2.0"
"@babel/generator": "^7.2.2",
"@babel/parser": "^7.2.2"
}
}

0 comments on commit c1499b1

Please sign in to comment.