This commit is contained in:
Nicolò Ribaudo 2019-12-06 14:12:41 +01:00
parent d3a37b5d08
commit d04508e510
17 changed files with 43 additions and 43 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "7.7.4", "version": "7.7.5",
"changelog": { "changelog": {
"repo": "babel/babel", "repo": "babel/babel",
"cacheDir": ".changelog", "cacheDir": ".changelog",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/cli", "name": "@babel/cli",
"version": "7.7.4", "version": "7.7.5",
"description": "Babel command line.", "description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -35,7 +35,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-fixtures": "^7.6.3" "@babel/helper-fixtures": "^7.6.3"
}, },
"bin": { "bin": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/core", "name": "@babel/core",
"version": "7.7.4", "version": "7.7.5",
"description": "Babel compiler core.", "description": "Babel compiler core.",
"main": "lib/index.js", "main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
@ -42,7 +42,7 @@
"@babel/code-frame": "^7.5.5", "@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.7.4", "@babel/generator": "^7.7.4",
"@babel/helpers": "^7.7.4", "@babel/helpers": "^7.7.4",
"@babel/parser": "^7.7.4", "@babel/parser": "^7.7.5",
"@babel/template": "^7.7.4", "@babel/template": "^7.7.4",
"@babel/traverse": "^7.7.4", "@babel/traverse": "^7.7.4",
"@babel/types": "^7.7.4", "@babel/types": "^7.7.4",
@ -55,6 +55,6 @@
"source-map": "^0.5.0" "source-map": "^0.5.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/helper-transform-fixture-test-runner": "^7.7.4" "@babel/helper-transform-fixture-test-runner": "^7.7.5"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/helper-module-transforms", "name": "@babel/helper-module-transforms",
"version": "7.7.4", "version": "7.7.5",
"description": "Babel helper functions for implementing ES6 module transformations", "description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>", "author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/helper-transform-fixture-test-runner", "name": "@babel/helper-transform-fixture-test-runner",
"version": "7.7.4", "version": "7.7.5",
"description": "Transform test runner for @babel/helper-fixtures module", "description": "Transform test runner for @babel/helper-fixtures module",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -12,7 +12,7 @@
"main": "lib/index.js", "main": "lib/index.js",
"dependencies": { "dependencies": {
"@babel/code-frame": "^7.5.5", "@babel/code-frame": "^7.5.5",
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-fixtures": "^7.6.3", "@babel/helper-fixtures": "^7.6.3",
"@babel/polyfill": "^7.6.0", "@babel/polyfill": "^7.6.0",
"babel-check-duplicated-nodes": "^1.0.0", "babel-check-duplicated-nodes": "^1.0.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/parser", "name": "@babel/parser",
"version": "7.7.4", "version": "7.7.5",
"description": "A JavaScript parser", "description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-proposal-optional-chaining", "name": "@babel/plugin-proposal-optional-chaining",
"version": "7.7.4", "version": "7.7.5",
"description": "Transform optional chaining operators into a series of nil checks", "description": "Transform optional chaining operators into a series of nil checks",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-optional-chaining",
"license": "MIT", "license": "MIT",
@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-test-runner": "^7.7.4", "@babel/helper-plugin-test-runner": "^7.7.4",
"@babel/plugin-transform-block-scoping": "^7.7.4" "@babel/plugin-transform-block-scoping": "^7.7.4"
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-modules-amd", "name": "@babel/plugin-transform-modules-amd",
"version": "7.7.4", "version": "7.7.5",
"description": "This plugin transforms ES2015 modules to AMD", "description": "This plugin transforms ES2015 modules to AMD",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-amd",
"license": "MIT", "license": "MIT",
@ -9,7 +9,7 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"dependencies": { "dependencies": {
"@babel/helper-module-transforms": "^7.7.4", "@babel/helper-module-transforms": "^7.7.5",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"babel-plugin-dynamic-import-node": "^2.3.0" "babel-plugin-dynamic-import-node": "^2.3.0"
}, },
@ -20,7 +20,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-test-runner": "^7.7.4" "@babel/helper-plugin-test-runner": "^7.7.4"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-modules-commonjs", "name": "@babel/plugin-transform-modules-commonjs",
"version": "7.7.4", "version": "7.7.5",
"description": "This plugin transforms ES2015 modules to CommonJS", "description": "This plugin transforms ES2015 modules to CommonJS",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-commonjs",
"license": "MIT", "license": "MIT",
@ -9,7 +9,7 @@
}, },
"main": "lib/index.js", "main": "lib/index.js",
"dependencies": { "dependencies": {
"@babel/helper-module-transforms": "^7.7.4", "@babel/helper-module-transforms": "^7.7.5",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-simple-access": "^7.7.4", "@babel/helper-simple-access": "^7.7.4",
"babel-plugin-dynamic-import-node": "^2.3.0" "babel-plugin-dynamic-import-node": "^2.3.0"
@ -21,7 +21,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-test-runner": "^7.7.4", "@babel/helper-plugin-test-runner": "^7.7.4",
"@babel/plugin-syntax-object-rest-spread": "^7.7.4" "@babel/plugin-syntax-object-rest-spread": "^7.7.4"
} }

View File

@ -2,7 +2,7 @@
"name": "@babel/plugin-transform-regenerator", "name": "@babel/plugin-transform-regenerator",
"author": "Ben Newman <bn@cs.stanford.edu>", "author": "Ben Newman <bn@cs.stanford.edu>",
"description": "Explode async and generator functions into a state machine.", "description": "Explode async and generator functions into a state machine.",
"version": "7.7.4", "version": "7.7.5",
"homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", "homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator",
"main": "lib/index.js", "main": "lib/index.js",
@ -17,7 +17,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-test-runner": "^7.7.4" "@babel/helper-plugin-test-runner": "^7.7.4"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-runtime", "name": "@babel/plugin-transform-runtime",
"version": "7.7.4", "version": "7.7.5",
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime",
"license": "MIT", "license": "MIT",
@ -21,12 +21,12 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-test-runner": "^7.7.4", "@babel/helper-plugin-test-runner": "^7.7.4",
"@babel/helpers": "^7.7.4", "@babel/helpers": "^7.7.4",
"@babel/plugin-transform-typeof-symbol": "^7.7.4", "@babel/plugin-transform-typeof-symbol": "^7.7.4",
"@babel/preset-env": "^7.7.4", "@babel/preset-env": "^7.7.5",
"@babel/runtime": "^7.7.4", "@babel/runtime": "^7.7.5",
"@babel/template": "^7.7.4", "@babel/template": "^7.7.4",
"@babel/types": "^7.7.4" "@babel/types": "^7.7.4"
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/preset-env-standalone", "name": "@babel/preset-env-standalone",
"version": "7.7.4", "version": "7.7.5",
"description": "Standalone build of babel-preset-env for use in non-Node.js environments.", "description": "Standalone build of babel-preset-env for use in non-Node.js environments.",
"main": "babel-preset-env.js", "main": "babel-preset-env.js",
"files": [ "files": [
@ -18,8 +18,8 @@
"@babel/plugin-syntax-top-level-await": "^7.7.4", "@babel/plugin-syntax-top-level-await": "^7.7.4",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4", "@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4",
"@babel/plugin-transform-new-target": "^7.7.4", "@babel/plugin-transform-new-target": "^7.7.4",
"@babel/preset-env": "^7.7.4", "@babel/preset-env": "^7.7.5",
"@babel/standalone": "^7.7.4", "@babel/standalone": "^7.7.5",
"lodash": "^4.17.13" "lodash": "^4.17.13"
}, },
"keywords": [ "keywords": [

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/preset-env", "name": "@babel/preset-env",
"version": "7.7.4", "version": "7.7.5",
"description": "A Babel preset for each environment.", "description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>", "author": "Henry Zhu <hi@henryzoo.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -42,8 +42,8 @@
"@babel/plugin-transform-function-name": "^7.7.4", "@babel/plugin-transform-function-name": "^7.7.4",
"@babel/plugin-transform-literals": "^7.7.4", "@babel/plugin-transform-literals": "^7.7.4",
"@babel/plugin-transform-member-expression-literals": "^7.7.4", "@babel/plugin-transform-member-expression-literals": "^7.7.4",
"@babel/plugin-transform-modules-amd": "^7.7.4", "@babel/plugin-transform-modules-amd": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.4", "@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-modules-systemjs": "^7.7.4", "@babel/plugin-transform-modules-systemjs": "^7.7.4",
"@babel/plugin-transform-modules-umd": "^7.7.4", "@babel/plugin-transform-modules-umd": "^7.7.4",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4", "@babel/plugin-transform-named-capturing-groups-regex": "^7.7.4",
@ -51,7 +51,7 @@
"@babel/plugin-transform-object-super": "^7.7.4", "@babel/plugin-transform-object-super": "^7.7.4",
"@babel/plugin-transform-parameters": "^7.7.4", "@babel/plugin-transform-parameters": "^7.7.4",
"@babel/plugin-transform-property-literals": "^7.7.4", "@babel/plugin-transform-property-literals": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.4", "@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/plugin-transform-reserved-words": "^7.7.4", "@babel/plugin-transform-reserved-words": "^7.7.4",
"@babel/plugin-transform-shorthand-properties": "^7.7.4", "@babel/plugin-transform-shorthand-properties": "^7.7.4",
"@babel/plugin-transform-spread": "^7.7.4", "@babel/plugin-transform-spread": "^7.7.4",
@ -70,8 +70,8 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.7.4", "@babel/cli": "^7.7.5",
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-fixtures": "^7.6.3", "@babel/helper-fixtures": "^7.6.3",
"@babel/helper-plugin-test-runner": "^7.7.4", "@babel/helper-plugin-test-runner": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/plugin-syntax-dynamic-import": "^7.2.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/runtime-corejs2", "name": "@babel/runtime-corejs2",
"version": "7.7.4", "version": "7.7.5",
"description": "babel's modular runtime helpers with core-js@2 polyfilling", "description": "babel's modular runtime helpers with core-js@2 polyfilling",
"license": "MIT", "license": "MIT",
"publishConfig": { "publishConfig": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/runtime-corejs3", "name": "@babel/runtime-corejs3",
"version": "7.7.4", "version": "7.7.5",
"description": "babel's modular runtime helpers with core-js@3 polyfilling", "description": "babel's modular runtime helpers with core-js@3 polyfilling",
"license": "MIT", "license": "MIT",
"publishConfig": { "publishConfig": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/runtime", "name": "@babel/runtime",
"version": "7.7.4", "version": "7.7.5",
"description": "babel's modular runtime helpers", "description": "babel's modular runtime helpers",
"license": "MIT", "license": "MIT",
"publishConfig": { "publishConfig": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/standalone", "name": "@babel/standalone",
"version": "7.7.4", "version": "7.7.5",
"description": "Standalone build of Babel for use in non-Node.js environments.", "description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "babel.js", "main": "babel.js",
"files": [ "files": [
@ -12,7 +12,7 @@
"prepublishOnly": "cd ../.. && make prepublish-build-standalone" "prepublishOnly": "cd ../.. && make prepublish-build-standalone"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.7.4", "@babel/core": "^7.7.5",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-external-helpers": "^7.7.4", "@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-async-generator-functions": "^7.7.4", "@babel/plugin-proposal-async-generator-functions": "^7.7.4",
@ -29,7 +29,7 @@
"@babel/plugin-proposal-numeric-separator": "^7.7.4", "@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4", "@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.7.4", "@babel/plugin-proposal-optional-catch-binding": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.4", "@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-proposal-pipeline-operator": "^7.7.4", "@babel/plugin-proposal-pipeline-operator": "^7.7.4",
"@babel/plugin-proposal-private-methods": "^7.7.4", "@babel/plugin-proposal-private-methods": "^7.7.4",
"@babel/plugin-proposal-throw-expressions": "^7.7.4", "@babel/plugin-proposal-throw-expressions": "^7.7.4",
@ -68,8 +68,8 @@
"@babel/plugin-transform-jscript": "^7.7.4", "@babel/plugin-transform-jscript": "^7.7.4",
"@babel/plugin-transform-literals": "^7.7.4", "@babel/plugin-transform-literals": "^7.7.4",
"@babel/plugin-transform-member-expression-literals": "^7.7.4", "@babel/plugin-transform-member-expression-literals": "^7.7.4",
"@babel/plugin-transform-modules-amd": "^7.7.4", "@babel/plugin-transform-modules-amd": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.4", "@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-modules-systemjs": "^7.7.4", "@babel/plugin-transform-modules-systemjs": "^7.7.4",
"@babel/plugin-transform-modules-umd": "^7.7.4", "@babel/plugin-transform-modules-umd": "^7.7.4",
"@babel/plugin-transform-new-target": "^7.7.4", "@babel/plugin-transform-new-target": "^7.7.4",
@ -87,9 +87,9 @@
"@babel/plugin-transform-react-jsx-compat": "^7.7.4", "@babel/plugin-transform-react-jsx-compat": "^7.7.4",
"@babel/plugin-transform-react-jsx-self": "^7.7.4", "@babel/plugin-transform-react-jsx-self": "^7.7.4",
"@babel/plugin-transform-react-jsx-source": "^7.7.4", "@babel/plugin-transform-react-jsx-source": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.4", "@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/plugin-transform-reserved-words": "^7.7.4", "@babel/plugin-transform-reserved-words": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4", "@babel/plugin-transform-runtime": "^7.7.5",
"@babel/plugin-transform-shorthand-properties": "^7.7.4", "@babel/plugin-transform-shorthand-properties": "^7.7.4",
"@babel/plugin-transform-spread": "^7.7.4", "@babel/plugin-transform-spread": "^7.7.4",
"@babel/plugin-transform-sticky-regex": "^7.7.4", "@babel/plugin-transform-sticky-regex": "^7.7.4",