-
Notifications
You must be signed in to change notification settings - Fork 324
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 run-p
script glob on yarn
2+
#3611
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@SuibianP is attempting to deploy a commit to a Personal Account owned by @nusmodifications on Vercel. @nusmodifications first needs to authorize it. |
Yarn 2+ expands glob patterns using its own shell and fails the `lint` script. Quote the pattern to prevent premature expansion. Escaped double quotes are used for compatibility with cmd.exe. Related-Bug: mysticatea/npm-run-all#200 yarnpkg/berry#1814
dd957ba
to
768794c
Compare
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## master #3611 +/- ##
=======================================
Coverage 53.44% 53.44%
=======================================
Files 271 271
Lines 5862 5862
Branches 1396 1396
=======================================
Hits 3133 3133
Misses 2729 2729 ☔ View full report in Codecov by Sentry. |
Thank you! I haven't looked into yarn 2 yet but I'm open to the idea of upgrading to it. Someone just has to do it :P |
Context
Yarn 2+ expands glob patterns using its own shell and fails the
lint
script.No issue created due to its trivial nature.
Implementation
Quote the pattern to prevent premature expansion. Escaped double quotes are used for compatibility with
cmd.exe
.Other Information
Related-Bug: mysticatea/npm-run-all#200 yarnpkg/berry#1814
Does the project officially support/plan to migrate to yarn 2+? If so, would it be better if such configuration is added to the test matrix?