Do not automatically publish eslint packages (#10722)

* Do not automatically publish eslint packages

* Fix

* Fix

* Fix

* Fix

* Fix
This commit is contained in:
Nicolò Ribaudo 2019-11-16 11:09:18 +01:00 committed by GitHub
parent a6d134804a
commit 5ca8acdb38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 31 additions and 2 deletions

View File

@ -225,6 +225,11 @@ endif
yarn lerna publish from-git --registry http://localhost:4873 --yes --tag-version-prefix="version-e2e-test-"
$(MAKE) clean
publish-eslint:
$(call set-json-field, ./eslint/$(PKG)/package.json, private, false)
cd eslint/$(PKG); yarn publish
$(call set-json-field, ./eslint/$(PKG)/package.json, private, true)
bootstrap-only: lerna-bootstrap
yarn-install: clean-all
@ -276,3 +281,10 @@ define clean-source-all
rm -rf $(1)/*/package-lock.json
endef
define set-json-field
node -e "\
require('fs').writeFileSync('$1'.trim(), \
JSON.stringify({ ...require('$1'.trim()), $2: $3 }, null, 2) + '\\n' \
)"
endef

View File

@ -5,6 +5,7 @@
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/babel/eslint-config-babel"

View File

@ -4,6 +4,7 @@
"description": "Custom parser for ESLint",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/babel/babel-eslint.git"
@ -14,7 +15,6 @@
"homepage": "https://github.com/babel/babel-eslint",
"scripts": {
"test": "cd test && mocha specs && cd -",
"preversion": "npm test",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
},
"engines": {

View File

@ -2,6 +2,7 @@
"name": "@babel/eslint-plugin-development",
"version": "1.0.1",
"description": "A set of eslint rules to enforce best practices in the development of Babel plugins.",
"private": true,
"keywords": [
"eslint",
"eslintplugin",

View File

@ -19,6 +19,7 @@
],
"author": "Jason Quense @monasticpanic",
"license": "MIT",
"private": true,
"engines": {
"node": ">=4"
},

View File

@ -22,7 +22,9 @@
"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|package)).json"
"@(!(built-in-modules|built-ins|plugins|package)).json",
"# Until the ESLint packages version are aligned with Babel's, we ignore them",
"eslint/**"
]
}
},

View File

@ -11,6 +11,13 @@ source utils/local-registry.sh
source utils/git.sh
source utils/cleanup.sh
function publishESLintPkg {
cd eslint/$1
yarn version --patch --no-git-tag-version
cd ../..
make publish-eslint PKG=$1
}
# Echo every command being executed
set -x
@ -30,4 +37,9 @@ loginLocalRegistry
I_AM_USING_VERDACCIO=I_AM_SURE make publish-test
publishESLintPkg babel-eslint-config-internal
publishESLintPkg babel-eslint-parser
publishESLintPkg babel-eslint-plugin
publishESLintPkg babel-eslint-plugin-development
cleanup