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
pnmp supports using package.json5 instead of the regular package.json, which is super useful to be able to add comments in the package file.
Concurrently allows specifying a shortcut command with a * wildcard like concurrently "pnpm:lint:*", which would run all scripts in package.json that start with lint:.
This all works well when running with package.json, but when using packages.json5, it results in the following error:
$ pnpm test> example-project@ test C:\.......\example-project
> concurrently --group pnpm:test:*
ELIFECYCLE Test failed. See above for more details.
This error occurs even if the file contents have not changed at all (i.e. still valid regular JSON) and only the file has been renamed to .json5
The text was updated successfully, but these errors were encountered:
pnmp supports using
package.json5
instead of the regularpackage.json
, which is super useful to be able to add comments in the package file.Concurrently allows specifying a shortcut command with a
*
wildcard likeconcurrently "pnpm:lint:*"
, which would run all scripts inpackage.json
that start withlint:
.This all works well when running with package.json, but when using packages.json5, it results in the following error:
This error occurs even if the file contents have not changed at all (i.e. still valid regular JSON) and only the file has been renamed to
.json5
The text was updated successfully, but these errors were encountered: