Skip to content

Commit

Permalink
Enforce publish of previously missed packages (#9811)
Browse files Browse the repository at this point in the history
* Fix versions of packages which haven鈥檛 been released.

* Do not ignore package.json
  • Loading branch information
nicolo-ribaudo committed Apr 2, 2019
2 parents 00cae77 + 9a8a731 commit e82169d
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -21,7 +21,7 @@
"test/**",
"codemods/**",
"# We ignore every JSON file, except for built-in-modules, built-ins and plugins defined in babel-preset-env/data.",
"@(!(built-in-modules|built-ins|plugins)).json"
"@(!(built-in-modules|built-ins|plugins|package)).json"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/cli",
"version": "7.2.3",
"version": "7.3.4",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-fixtures/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-fixtures",
"version": "7.2.0",
"version": "7.3.3",
"description": "Helper function to support fixtures",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-module-transforms/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-module-transforms",
"version": "7.2.2",
"version": "7.3.3",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-helper-regex/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-regex",
"version": "7.0.0",
"version": "7.3.3",
"description": "Helper function to check for literal RegEx",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-regex",
"license": "MIT",
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/helper-transform-fixture-test-runner",
"version": "7.1.2",
"version": "7.3.3",
"description": "Transform test runner for @babel/helper-fixtures module",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-proposal-nullish-coalescing-operator",
"version": "7.2.0",
"version": "7.2.2",
"description": "Remove nullish coalescing operator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-nullish-coalescing-operator",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-syntax-bigint/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-syntax-bigint",
"version": "7.2.0",
"version": "7.2.2",
"description": "Allow parsing of BigInt literals",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-bigint",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-transform-dotall-regex/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-dotall-regex",
"version": "7.2.0",
"version": "7.4.0",
"description": "Compile regular expressions using the `s` (`dotAll`) flag to ES5.",
"homepage": "https://babeljs.io/",
"license": "MIT",
Expand Down
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-proto-to-assign",
"version": "7.2.0",
"version": "7.3.4",
"description": "Babel plugin for turning __proto__ into a shallow property clone",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-proto-to-assign",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-transform-unicode-regex/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/plugin-transform-unicode-regex",
"version": "7.2.0",
"version": "7.4.0",
"description": "Compile ES2015 Unicode regex to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-unicode-regex",
"license": "MIT",
Expand Down

0 comments on commit e82169d

Please sign in to comment.