Skip to content

Commit

Permalink
v7.11.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Aug 20, 2020
1 parent 565cfff commit 90b1989
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 24 deletions.
4 changes: 2 additions & 2 deletions eslint/babel-eslint-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/eslint-parser",
"version": "7.11.3",
"version": "7.11.4",
"description": "ESLint parser that allows for linting of experimental syntax transformed by Babel",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
Expand Down Expand Up @@ -35,7 +35,7 @@
"semver": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/core": "^7.11.4",
"dedent": "^0.7.0",
"eslint": "^7.5.0",
"lodash.clonedeep": "^4.5.0"
Expand Down
4 changes: 2 additions & 2 deletions eslint/babel-eslint-tests/package.json
@@ -1,11 +1,11 @@
{
"name": "@babel/eslint-tests",
"version": "7.11.0",
"version": "7.11.4",
"description": "Tests for babel/eslint-* packages",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/eslint-parser": "^7.11.0",
"@babel/eslint-parser": "^7.11.4",
"dedent": "^0.7.0",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.22.0"
Expand Down
12 changes: 9 additions & 3 deletions lerna.json
@@ -1,5 +1,5 @@
{
"version": "7.11.3",
"version": "7.11.4",
"changelog": {
"repo": "babel/babel",
"cacheDir": ".changelog",
Expand Down Expand Up @@ -31,7 +31,13 @@
"push": false
}
},
"packages": ["codemods/*", "eslint/*", "packages/*"],
"packages": [
"codemods/*",
"eslint/*",
"packages/*"
],
"npmClient": "yarn",
"npmClientArgs": ["--pure-lockfile"]
"npmClientArgs": [
"--pure-lockfile"
]
}
8 changes: 4 additions & 4 deletions packages/babel-core/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/core",
"version": "7.11.1",
"version": "7.11.4",
"description": "Babel compiler core.",
"main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
Expand Down Expand Up @@ -44,10 +44,10 @@
},
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.11.0",
"@babel/generator": "^7.11.4",
"@babel/helper-module-transforms": "^7.11.0",
"@babel/helpers": "^7.10.4",
"@babel/parser": "^7.11.1",
"@babel/parser": "^7.11.4",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.11.0",
"@babel/types": "^7.11.0",
Expand All @@ -61,6 +61,6 @@
"source-map": "^0.5.0"
},
"devDependencies": {
"@babel/helper-transform-fixture-test-runner": "^7.10.5"
"@babel/helper-transform-fixture-test-runner": "^7.11.4"
}
}
4 changes: 2 additions & 2 deletions packages/babel-generator/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.11.0",
"version": "7.11.4",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -24,6 +24,6 @@
},
"devDependencies": {
"@babel/helper-fixtures": "^7.10.5",
"@babel/parser": "^7.11.0"
"@babel/parser": "^7.11.4"
}
}
2 changes: 1 addition & 1 deletion packages/babel-helper-bindify-decorators/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-bindify-decorators",
"version": "7.10.4",
"version": "7.11.4",
"description": "Helper function to bindify decorators",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-call-delegate/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-call-delegate",
"version": "7.10.4",
"version": "7.11.4",
"description": "Helper function to call delegate",
"repository": {
"type": "git",
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-explode-assignable-expression",
"version": "7.10.4",
"version": "7.11.4",
"description": "Helper function to explode an assignable expression",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-helper-explode-class/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-explode-class",
"version": "7.10.4",
"version": "7.11.4",
"description": "Helper function to explode class",
"repository": {
"type": "git",
Expand All @@ -13,7 +13,7 @@
},
"main": "lib/index.js",
"dependencies": {
"@babel/helper-bindify-decorators": "^7.10.4",
"@babel/helper-bindify-decorators": "^7.11.4",
"@babel/types": "^7.10.4"
},
"devDependencies": {
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-remap-async-to-generator",
"version": "7.10.4",
"version": "7.11.4",
"description": "Helper function to remap async functions to generators",
"repository": {
"type": "git",
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-transform-fixture-test-runner",
"version": "7.10.5",
"version": "7.11.4",
"description": "Transform test runner for @babel/helper-fixtures module",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand All @@ -16,7 +16,7 @@
"main": "lib/index.js",
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/helper-fixtures": "^7.10.5",
"@babel/polyfill": "^7.10.4",
"babel-check-duplicated-nodes": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/parser",
"version": "7.11.3",
"version": "7.11.4",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-standalone/package.json
@@ -1,14 +1,14 @@
{
"name": "@babel/standalone",
"version": "7.11.3",
"version": "7.11.4",
"description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "babel.js",
"files": [
"babel.js",
"babel.min.js"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/core": "^7.11.4",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
Expand Down

0 comments on commit 90b1989

Please sign in to comment.