1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-04 08:54:20 -05:00
denoland-deno/cli
David Sherret 3e72241fda
fix(npm): reduce copy packages when resolving optional peer dependencies (#17280)
If an optional peer dependency entry previously wasn't resolved and it's
now being resolved, then it will add it as if it were a dependency of
the previously resolved package instead of creating a new "copy package"
(seems to be what npm and pnpm does).

Closes #17240
2023-01-06 09:13:21 -05:00
..
args fix(cli): uninstall command accept short flags (#17259) 2023-01-06 02:09:39 +00:00
bench refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
cache chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
js fix: upgrade deno_ast to 0.23 (#17269) 2023-01-04 18:54:54 -05:00
lsp fix(lsp): don't error if completionItem/resolve request fails (#17250) 2023-01-03 18:13:21 +01:00
napi chore: forward v1.29.2 release commit to main (#17277) 2023-01-05 16:48:19 +01:00
node refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
npm fix(npm): reduce copy packages when resolving optional peer dependencies (#17280) 2023-01-06 09:13:21 -05:00
ops chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
schemas fix: add missing verb in description (#17163) 2022-12-22 14:51:22 +01:00
tests fix: upgrade deno_ast to 0.23 (#17269) 2023-01-04 18:54:54 -05:00
tools refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
tsc refactor(cli): clean up clones (#17268) 2023-01-05 12:33:09 -05:00
util chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
auth_tokens.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
build.rs chore(cli,ext,rt): remove some unnecessary clone or malloc (#17261) 2023-01-04 13:20:36 +01:00
Cargo.toml chore: forward v1.29.2 release commit to main (#17277) 2023-01-05 16:48:19 +01:00
deno.ico fix(cli): add icon and metadata to deno.exe on Windows (#6693) 2020-07-15 21:54:38 +02:00
deno_std.rs chore: forward v1.29.2 release commit to main (#17277) 2023-01-05 16:48:19 +01:00
emit.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
errors.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
file_fetcher.rs chore(cli,ext,rt): remove some unnecessary clone or malloc (#17261) 2023-01-04 13:20:36 +01:00
graph_util.rs refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
http_util.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
js.rs feat(core): Ability to create snapshots from existing snapshots (#16597) 2022-11-21 14:36:26 +01:00
main.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
module_loader.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
proc_state.rs refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
README.md docs(cli): do not need gen doc for cli (#17260) 2023-01-04 13:19:58 +01:00
resolver.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
standalone.rs refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05:00
version.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
worker.rs refactor(cli,core,ext,rt): remove some unnecessary clone or malloc (#17274) 2023-01-05 14:29:50 -05: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.