1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-09 15:48:16 -05:00
denoland-deno/cli
Marvin Hagemeister cabdfa8c2d
fix(lint): fix single char selectors being ignored (#27576)
The selector splitting code that's used for JS linting plugins didn't
properly account for selectors being a single character. This can happen
in the case of `*`.

Instead of comparing against the length, we'll now check if the
remaining string portion is not empty, which is more robust. It also
allows us to detect trailing whitespace, which we didn't before.
2025-01-08 00:21:50 +01:00
..
args fix(permissions): implicit --allow-import when using --cached-only (#27530) 2025-01-02 16:55:03 -05:00
bench chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
cache refactor: make IncrementalCache accept a CacheDBHash (#27570) 2025-01-06 23:56:36 +00:00
js fix(lint): fix single char selectors being ignored (#27576) 2025-01-08 00:21:50 +01:00
lsp fix(lsp): don't skip dirs with enabled subdirs (#27580) 2025-01-07 19:04:06 +00:00
npm refactor: update some fs_util functions to use sys_traits (#27515) 2025-01-02 10:06:12 -05:00
ops chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
schemas fix(task): support tasks without commands (#27191) 2024-12-19 18:10:58 +00:00
standalone fix(permissions): implicit --allow-import when using --cached-only (#27530) 2025-01-02 16:55:03 -05:00
tools refactor: make IncrementalCache accept a CacheDBHash (#27570) 2025-01-06 23:56:36 +00:00
tsc feat(unstable): no config npm:@opentelemetry/api integration (#27541) 2025-01-06 17:00:32 +01:00
util refactor: update some fs_util functions to use sys_traits (#27515) 2025-01-02 10:06:12 -05:00
build.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
Cargo.toml fix(no-slow-types): handle rest param with internal assignments (#27581) 2025-01-07 12:34:34 -08:00
cdp.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
clippy.toml refactor: do not use deno_fs::FileSystem everywhere (#27508) 2024-12-31 11:29:07 -05:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
emit.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
entitlements.plist chore: start codesigning mac release builds (#21303) 2023-11-23 15:30:26 -07:00
errors.rs fix(check): move module not found errors to typescript diagnostics (#27533) 2025-01-03 21:49:56 +00:00
factory.rs fix(check): move module not found errors to typescript diagnostics (#27533) 2025-01-03 21:49:56 +00:00
file_fetcher.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
graph_container.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
graph_util.rs fix(check): move module not found errors to typescript diagnostics (#27533) 2025-01-03 21:49:56 +00:00
http_util.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
integration_tests_runner.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
js.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
jsr.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
main.rs feat(unstable): replace SpanExporter with TracerProvider (#27473) 2025-01-06 14:28:29 +01:00
mainrt.rs feat(unstable): replace SpanExporter with TracerProvider (#27473) 2025-01-06 14:28:29 +01:00
module_loader.rs fix(check): move module not found errors to typescript diagnostics (#27533) 2025-01-03 21:49:56 +00:00
node.rs refactor: make IncrementalCache accept a CacheDBHash (#27570) 2025-01-06 23:56:36 +00:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
shared.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
sys.rs refactor: update some fs_util functions to use sys_traits (#27515) 2025-01-02 10:06:12 -05:00
task_runner.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
version.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
worker.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00

Deno CLI Crate

crates

This provides the actual deno executable and the user-facing APIs.

The deno crate uses the deno_core to provide the executable.