You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This lead to pnpm errors that took a while for me to figure out (pnpm lint failed as well, this is the result of me running pnpm --filter "*" lint explicitly so it would do something more interesting):
pnpm --filter "*" lint
Scope: 2 of 3 workspace projects
my-addon lint$ concurrently 'pnpm:lint:*(!fix)' --names 'lint:'
│ ' was unexpected at this time.
│ C:\path\to\my-addon\my-addon> "C:\path\to\my-addon…
└─ Failed in 39ms at C:\path\to\my-addon\my-addon
C:\path\to\my-addon\my-addon:
ERR_PNPM_RECURSIVE_RUN_FIRST_FAIL [email protected] lint: `concurrently 'pnpm:lint:*(!fix)' --names 'lint:'`
Exit status 255
It worked for me once I replaced all of the single quotes with escaped double quotes:
@NullVoxPopuli right, that's what I assumed. Do escaped double quotes not work on mac and linux? It would be great if the blueprint scripts worked out of the box on Windows as well. Happy to make a PR with the changes if it's useful.
OS: Windows
Shell: Git Bash
Proposed solution: Use escaped double-quotes instead of single-quotes in package.json scripts
Scripts defined in the root-level
package.json
and the one in the addon's folder use single-quotes. For example:This lead to pnpm errors that took a while for me to figure out (
pnpm lint
failed as well, this is the result of me runningpnpm --filter "*" lint
explicitly so it would do something more interesting):It worked for me once I replaced all of the single quotes with escaped double quotes:
The text was updated successfully, but these errors were encountered: