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

Fix runYarn function in release script #15200

Merged
merged 2 commits into from Aug 3, 2023

Conversation

sosukesuzuki
Copy link
Member

@sosukesuzuki sosukesuzuki commented Aug 2, 2023

Description

Currently following code will fail:

runYarn("install");

Checklist

  • I’ve added tests to confirm my change works.
  • (If changing the API or CLI) I’ve documented the changes I’ve made (in the docs/ directory).
  • (If the change is user-facing) I’ve added my changes to changelog_unreleased/*/XXXX.md file following changelog_unreleased/TEMPLATE.md.
  • I’ve read the contributing guidelines.

Try the playground for this PR

@sosukesuzuki
Copy link
Member Author

this is broken. I'll fix later.

@@ -58,7 +58,7 @@ async function runYarn(args, options) {
args = Array.isArray(args) ? args : [args];

try {
return await execa("yarn", ["--silent", "run", ...args], options);
return await execa("yarn", [...args, "--silent"], options);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we remove --silent?

You can also release with --skip-dependencies-install https://github.com/prettier/prettier/tree/main/scripts/release#flags

@sosukesuzuki sosukesuzuki merged commit c3d53dc into prettier:main Aug 3, 2023
28 checks passed
@sosukesuzuki sosukesuzuki deleted the fix-release-script-yarn branch August 3, 2023 05:45
medikoo pushed a commit to medikoo/prettier-elastic that referenced this pull request Feb 15, 2024
* Maybe it works

* Remove `--silent`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants