This commit is contained in:
Nicolò Ribaudo 2019-01-21 22:22:39 +01:00
parent e8de6fa5d4
commit f6ee26c3da
20 changed files with 45 additions and 45 deletions

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@babel/generator",
"version": "7.2.2",
"version": "7.3.0",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
@ -14,7 +14,7 @@
"lib"
],
"dependencies": {
"@babel/types": "^7.2.2",
"@babel/types": "^7.3.0",
"jsesc": "^2.5.1",
"lodash": "^4.17.10",
"source-map": "^0.5.0",
@ -22,6 +22,6 @@
},
"devDependencies": {
"@babel/helper-fixtures": "^7.2.0",
"@babel/parser": "^7.2.2"
"@babel/parser": "^7.3.0"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@babel/helper-builder-react-jsx",
"version": "7.0.0",
"version": "7.3.0",
"description": "Helper function to build react jsx",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-builder-react-jsx",
"license": "MIT",
@ -9,7 +9,7 @@
},
"main": "lib/index.js",
"dependencies": {
"@babel/types": "^7.0.0",
"@babel/types": "^7.3.0",
"esutils": "^2.0.0"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@babel/helper-create-class-features-plugin",
"version": "7.2.3",
"version": "7.3.0",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
"description": "Compile class public and private fields, private methods and decorators to ES6",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/helpers",
"version": "7.2.0",
"version": "7.3.0",
"description": "Collection of helper functions used by Babel transforms.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
@ -13,7 +13,7 @@
"dependencies": {
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.2.0"
"@babel/types": "^7.3.0"
},
"devDependencies": {
"@babel/helper-plugin-test-runner": "^7.0.0"

View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-class-properties",
"version": "7.2.3",
"version": "7.3.0",
"description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties",
"license": "MIT",
@ -12,7 +12,7 @@
"babel-plugin"
],
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.2.3",
"@babel/helper-create-class-features-plugin": "^7.3.0",
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-decorators",
"version": "7.2.3",
"version": "7.3.0",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"license": "MIT",
"publishConfig": {
@ -15,7 +15,7 @@
"decorators"
],
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.2.3",
"@babel/helper-create-class-features-plugin": "^7.3.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-decorators": "^7.2.0"
},

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-object-rest-spread",
"version": "7.2.0",
"version": "7.3.0",
"description": "Compile object rest and spread to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-pipeline-operator",
"version": "7.2.0",
"version": "7.3.0",
"description": "Transform pipeline operator into call expressions",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-pipeline-operator",
"license": "MIT",
@ -13,7 +13,7 @@
],
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-pipeline-operator": "^7.2.0"
"@babel/plugin-syntax-pipeline-operator": "^7.3.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-private-methods",
"version": "7.2.3",
"version": "7.3.0",
"description": "This plugin transforms private class methods",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-private-methods",
"license": "MIT",
@ -12,7 +12,7 @@
"babel-plugin"
],
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.2.3",
"@babel/helper-create-class-features-plugin": "^7.3.0",
"@babel/helper-plugin-utils": "^7.0.0"
},
"peerDependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-pipeline-operator",
"version": "7.2.0",
"version": "7.3.0",
"description": "Allow parsing of the pipeline operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-pipeline-operator",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-named-capturing-groups-regex",
"version": "7.2.5",
"version": "7.3.0",
"description": "Compile regular expressions using named groups to ES5.",
"homepage": "https://babeljs.io/",
"license": "MIT",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-react-jsx",
"version": "7.2.0",
"version": "7.3.0",
"description": "Turn JSX into React function calls",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-react-jsx",
"license": "MIT",
@ -12,7 +12,7 @@
"babel-plugin"
],
"dependencies": {
"@babel/helper-builder-react-jsx": "^7.0.0",
"@babel/helper-builder-react-jsx": "^7.3.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.2.0"
},

View File

@ -1,6 +1,6 @@
{
"name": "@babel/preset-env-standalone",
"version": "7.2.5",
"version": "7.3.0",
"description": "Standalone build of babel-prest-env for use in non-Node.js environments.",
"main": "babel-preset-env.js",
"files": [
@ -10,10 +10,10 @@
],
"devDependencies": {
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.2.5",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0",
"@babel/plugin-transform-new-target": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/standalone": "^7.2.5"
"@babel/preset-env": "^7.3.0",
"@babel/standalone": "^7.3.0"
},
"keywords": [
"babel",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/preset-env",
"version": "7.2.3",
"version": "7.3.0",
"description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>",
"homepage": "https://babeljs.io/",
@ -18,7 +18,7 @@
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0",
@ -42,7 +42,7 @@
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-modules-systemjs": "^7.2.0",
"@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.2.5",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0",
"@babel/plugin-transform-new-target": "^7.0.0",
"@babel/plugin-transform-object-super": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/runtime-corejs2",
"version": "7.2.0",
"version": "7.3.0",
"description": "babel's modular runtime helpers with core-js@2 polyfilling",
"license": "MIT",
"publishConfig": {
@ -13,6 +13,6 @@
"regenerator-runtime": "^0.12.0"
},
"devDependencies": {
"@babel/helpers": "^7.2.0"
"@babel/helpers": "^7.3.0"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@babel/runtime",
"version": "7.2.0",
"version": "7.3.0",
"description": "babel's modular runtime helpers",
"license": "MIT",
"publishConfig": {
@ -12,6 +12,6 @@
"regenerator-runtime": "^0.12.0"
},
"devDependencies": {
"@babel/helpers": "^7.2.0"
"@babel/helpers": "^7.3.0"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@babel/standalone",
"version": "7.2.5",
"version": "7.3.0",
"description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "babel.js",
"files": [
@ -13,8 +13,8 @@
"@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.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@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",
@ -23,11 +23,11 @@
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.2.0",
"@babel/plugin-proposal-private-methods": "^7.2.3",
"@babel/plugin-proposal-pipeline-operator": "^7.3.0",
"@babel/plugin-proposal-private-methods": "^7.3.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0",
@ -44,7 +44,7 @@
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0",
"@babel/plugin-syntax-pipeline-operator": "^7.2.0",
"@babel/plugin-syntax-pipeline-operator": "^7.3.0",
"@babel/plugin-syntax-typescript": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
@ -79,7 +79,7 @@
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-react-jsx-compat": "^7.2.0",
"@babel/plugin-transform-react-jsx-self": "^7.2.0",
"@babel/plugin-transform-react-jsx-source": "^7.2.0",

View File

@ -1,6 +1,6 @@
{
"name": "@babel/types",
"version": "7.2.2",
"version": "7.3.0",
"description": "Babel Types is a Lodash-esque utility library for AST nodes",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
@ -14,7 +14,7 @@
"to-fast-properties": "^2.0.0"
},
"devDependencies": {
"@babel/generator": "^7.2.2",
"@babel/parser": "^7.2.2"
"@babel/generator": "^7.3.0",
"@babel/parser": "^7.3.0"
}
}