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
pnmp supports using
package.json5instead 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.jsonthat 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