8000 v7.12.12 · babel/babel@d88c60c · GitHub
[go: up one dir, main page]

Skip to content

Commit d88c60c

Browse files
v7.12.12
1 parent 5b5b548 commit d88c60c

File tree

12 files changed

+39
-39
lines changed

12 files changed

+39
-39
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel",
3-
"version": "7.12.11",
3+
"version": "7.12.12",
44
"private": true,
55
"license": "MIT",
66
"scripts": {

packages/babel-helper-fixtures/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/helper-fixtures",
3-
"version": "7.12.10",
3+
"version": "7.12.12",
44
"description": "Helper function to support fixtures",
55
"author": "Sebastian McKenzie <sebmck@gmail.com>",
66
"license": "MIT",

packages/babel-helper-transform-fixture-test-runner/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/helper-transform-fixture-test-runner",
3-
"version": "7.12.10",
3+
"version": "7.12.12",
44
"description": "Transform test runner for @babel/helper-fixtures module",
55
"author": "Sebastian McKenzie <sebmck@gmail.com>",
66
"homepage": "https://babeljs.io/",
@@ -15,9 +15,9 @@
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {
18-
"@babel/code-frame": "workspace:^7.10.4",
18+
"@babel/code-frame": "workspace:^7.12.11",
1919
"@babel/core": "workspace:^7.12.10",
20-
"@babel/helper-fixtures": "workspace:^7.12.10",
20+
"@babel/helper-fixtures": "workspace:^7.12.12",
2121
"babel-check-duplicated-nodes": "^1.0.0",
2222
"jest-diff": "^24.8.0",
2323
"lodash": "^4.17.19",

packages/babel-plugin-proposal-async-generator-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/plugin-proposal-async-generator-functions",
3-
"version": "7.12.1",
3+
"version": "7.12.12",
44
"description": "Turn async generator functions into ES2015 generators",
55
"repository": {
66
"type": "git",

packages/babel-plugin-proposal-decorators/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/plugin-proposal-decorators",
3-
"version": "7.12.1",
3+
"version": "7.12.12",
44
"author": "Logan Smyth <loganfsmyth@gmail.com>",
55
"license": "MIT",
66
"publishConfig": {

packages/babel-plugin-transform-block-scoping/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/plugin-transform-block-scoping",
3-
"version": "7.12.11",
3+
"version": "7.12.12",
44
"description": "Compile ES2015 block scoping (const and let) to ES5",
55
"repository": {
66
"type": "git",

packages/babel-plugin-transform-react-jsx-development/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/plugin-transform-react-jsx-development",
3-
"version": "7.12.11",
3+
"version": "7.12.12",
44
"description": "Turn JSX into React function calls in development",
55
"repository": {
66
"type": "git",
@@ -16,7 +16,7 @@
1616
"babel-plugin"
1717
],
1818
"dependencies": {
19-
"@babel/plugin-transform-react-jsx": "workspace:^7.12.11"
19+
"@babel/plugin-transform-react-jsx": "workspace:^7.12.12"
2020
},
2121
"peerDependencies": {
2222
"@babel/core": "^7.0.0-0"

packages/babel-plugin-transform-react-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/plugin-transform-react-jsx",
3-
"version": "7.12.11",
3+
"version": "7.12.12",
44
"description": "Turn JSX into React function calls",
55
"repository": {
66
"type": "git",
@@ -20,7 +20,7 @@
2020
"@babel/helper-module-imports": "workspace:^7.12.5",
2121
"@babel/helper-plugin-utils": "workspace:^7.10.4",
2222
"@babel/plugin-syntax-jsx": "workspace:^7.12.1",
23-
"@babel/types": "workspace:^7.12.11"
23+
"@babel/types": "workspace:^7.12.12"
2424
},
2525
"peerDependencies": {
2626
"@babel/core": "^7.0.0-0"

packages/babel-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/standalone",
3-
"version": "7.12.11",
3+
"version": "7.12.12",
44
"description": "Standalone build of Babel for use in non-Node.js environments.",
55
"main": "babel.js",
66
"files": [

packages/babel-traverse/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@babel/traverse",
3-
"version": "7.12.10",
3+
"version": "7.12.12",
44
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
55
"author": "Sebastian McKenzie <sebmck@gmail.com>",
66
"homepage": "https://babeljs.io/",
@@ -15,12 +15,12 @@
1515
},
1616
"main": "lib/index.js",
1717
"dependencies": {
18-
"@babel/code-frame": "workspace:^7.10.4",
19-
"@babel/generator": "workspace:^7.12.10",
20-
"@babel/helper-function-name": "workspace:^7.10.4",
21-
"@babel/helper-split-export-declaration": "workspace:^7.11.0",
22-
"@babel/parser": "workspace:^7.12.10",
23-
"@babel/types": "workspace:^7.12.10",
18+
"@babel/code-frame": "workspace:^7.12.11",
19+
"@babel/generator": "workspace:^7.12.11",
20+
"@babel/helper-function-name": "workspace:^7.12.11",
21+
"@babel/helper-split-export-declaration": "workspace:^7.12.11",
22+
"@babel/parser": "workspace:^7.12.11",
23+
"@babel/types": "workspace:^7.12.12",
2424
"debug": "^4.1.0",
2525
"globals": "^11.1.0",
2626
"lodash": "^4.17.19"

0 commit comments

Comments
 (0)
0