diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-05 11:04:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-05 17:04:16 +0200 |
commit | 7ed90a20d04982ae15a52ae2378cbffd4b6839df (patch) | |
tree | 3297d6f7227fbf1cf80e17a2a376ef4dfa52e6ad /tests/specs/publish/missing_constraint/publish.out | |
parent | 0544d60012006b1c7799d8b6eafacec9567901ad (diff) |
fix: better handling of npm resolution occurring on workers (#24094)
Closes https://github.com/denoland/deno/issues/24063
Diffstat (limited to 'tests/specs/publish/missing_constraint/publish.out')
-rw-r--r-- | tests/specs/publish/missing_constraint/publish.out | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/publish/missing_constraint/publish.out b/tests/specs/publish/missing_constraint/publish.out index 846612979..601035b05 100644 --- a/tests/specs/publish/missing_constraint/publish.out +++ b/tests/specs/publish/missing_constraint/publish.out @@ -6,6 +6,7 @@ error[missing-constraint]: specifier 'jsr:@denotest/add' is missing a version co | 1 | import { add } from "add"; | ^^^^^ the specifier + | = hint: specify a version constraint for the specifier in the import map info: the specifier resolved to version 1.0.0 today, but will resolve to a different @@ -17,6 +18,7 @@ error[missing-constraint]: specifier 'npm:@denotest/esm-basic' is missing a vers | 2 | import * as basic from "basic"; | ^^^^^^^ the specifier + | = hint: specify a version constraint for the specifier in the import map info: the specifier resolved to version 1.0.0 today, but will resolve to a different @@ -28,6 +30,7 @@ error[missing-constraint]: specifier 'jsr:@denotest/deps' is missing a version c | 3 | import * as deps from "jsr:@denotest/deps"; | ^^^^^^^^^^^^^^^^^^^^ the specifier + | = hint: specify a version constraint for the specifier info: the specifier resolved to version 1.0.0 today, but will resolve to a different |