1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/cli/args
Bartek Iwańczuk 3d865949c2
fix: better error message for malformed glob (#19225)
Before:
```
$ cargo run -- test "foo/*******/bar.ts"
error: Pattern syntax error near position 6: wildcards are either regular `*` or recursive `**`
```

After:
```
$ cargo run -- test "foo/*******/bar.ts"
error: Failed to expand glob: "foo/*******/bar.ts"

Caused by:
    Pattern syntax error near position 6: wildcards are either regular `*` or recursive `**`
```

---------

Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
2023-05-23 17:35:12 +00:00
..
config_file.rs feat: add support for globs in the config file and CLI arguments for files (#19102) 2023-05-23 03:39:59 +02:00
flags.rs feat(vendor): support for npm specifiers (#19186) 2023-05-19 22:39:27 +00:00
flags_allow_net.rs chore: upgrade clap to v4 (#17333) 2023-03-26 06:06:18 +02:00
import_map.rs chore: upgrade to Rust 1.67 (#17548) 2023-01-27 10:43:16 -05:00
lockfile.rs feat(lsp): support lockfile and node_modules directory (#19203) 2023-05-22 21:28:36 -04:00
mod.rs fix: better error message for malformed glob (#19225) 2023-05-23 17:35:12 +00:00
package_json.rs feat(compile): unstable npm and node specifier support (#19005) 2023-05-10 20:06:59 -04:00