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