Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release-tool and define implicit deps for @babel/runtime #12527

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .yarn/plugins/@yarnpkg/plugin-babel-release-tool.cjs

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions .yarnrc.yml
Expand Up @@ -17,6 +17,11 @@ releaseTool:
- codemods/**
- "@(!(native-modules|built-ins|plugins|package)).json"

implicitDependencies:
"@babel/runtime": ["@babel/helpers"]
"@babel/runtime-corejs2": ["@babel/helpers"]
"@babel/runtime-corejs3": ["@babel/helpers"]

unsafeHttpWhitelist:
- localhost

Expand Down
4 changes: 1 addition & 3 deletions Makefile
Expand Up @@ -2,8 +2,6 @@ FLOW_COMMIT = a1f9a4c709dcebb27a5084acf47755fbae699c25
TEST262_COMMIT = 36d2d2d348d83e9d6554af59a672fbcd9413914b
TYPESCRIPT_COMMIT = da8633212023517630de5f3620a23736b63234b1

FORCE_PUBLISH = -f @babel/runtime -f @babel/runtime-corejs2 -f @babel/runtime-corejs3 -f @babel/standalone

# Fix color output until TravisCI fixes https://github.com/travis-ci/travis-ci/issues/7967
export FORCE_COLOR = true

Expand Down Expand Up @@ -205,7 +203,7 @@ prepublish:

new-version:
git pull --rebase
$(YARN) release-tool version $(FORCE_PUBLISH)
$(YARN) release-tool version -f @babel/standalone

# NOTE: Run make new-version first
publish:
Expand Down