diff options
author | Jovi De Croock <decroockjovi@gmail.com> | 2024-01-06 11:55:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 11:55:28 +0100 |
commit | 7fbdc15f22138bccfc241a0b5ab512b2a7e97bcd (patch) | |
tree | 60935b23b2dbff5013e47d0a9ce73d9a9ed96ef4 | |
parent | dac9b6ab431a973f26c6ca3283b7d4b9606f910f (diff) |
fix(cli): update import map url (#21824)
Fixes https://github.com/denoland/deno/issues/21822
This updates the import-maps help URL to the one mentioned in the issue
-rw-r--r-- | cli/args/flags.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index b4c689651..8b796edc2 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2810,9 +2810,7 @@ fn inspect_args(app: Command) -> Command { static IMPORT_MAP_HELP: &str = concat!( "Load import map file from local file or remote URL. -Docs: https://deno.land/manual@v", - env!("CARGO_PKG_VERSION"), - "/linking_to_external_code/import_maps +Docs: https://docs.deno.com/runtime/manual/basics/import_maps Specification: https://wicg.github.io/import-maps/ Examples: https://github.com/WICG/import-maps#the-import-map", ); |