Tried running the build command of the Preact repository and ran into this error.
Steps to reproduce
- Create a
package.json file with these contents:
{
"scripts": {
"all": "npm-run-all foo:*",
"foo:a": "echo 'a'",
"foo:b": "echo 'b'"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}
- Run
npm i
- Run
DENO_FUTURE=1 deno task all
Error
Deno:
$ deno task all
Task all npm-run-all foo:*
glob: no matches found '/Users/marvinh/dev/test/deno-run-all/foo:*'
Node:
$ npm run all
> all
> npm-run-all foo:*
> foo:a
> echo 'a'
a
> foo:b
> echo 'b'
b
Version: Deno 1.42.4 (git 5294885 2024-04-24)