diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-09-28 16:43:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 22:43:45 +0200 |
commit | d43e48c4e96b02289d505cd2558ba85d7d6cb57b (patch) | |
tree | d69a40b3e948a5c4ea166700610e24e35ecc61c4 /cli/tests | |
parent | 0bd53fd52d8937afed401fe1c61bb2ba0b23501c (diff) |
refactor(ext/node): remove dependency on deno_npm and deno_semver (#20718)
This is required from BYONM (bring your own node_modules).
Part of #18967
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/testdata/npm/deno_run_no_bin_entrypoint.out | 2 | ||||
-rw-r--r-- | cli/tests/testdata/npm/deno_run_no_bin_entrypoint_non_existent_subpath.out | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/npm/deno_run_no_bin_entrypoint.out b/cli/tests/testdata/npm/deno_run_no_bin_entrypoint.out index b878bc70c..73bddfecf 100644 --- a/cli/tests/testdata/npm/deno_run_no_bin_entrypoint.out +++ b/cli/tests/testdata/npm/deno_run_no_bin_entrypoint.out @@ -1 +1 @@ -error: package '@denotest/esm-basic' did not have a bin property in its package.json +error: '[WILDCARD]@denotest[WILDCARD]esm-basic[WILDCARD]package.json' did not have a bin property diff --git a/cli/tests/testdata/npm/deno_run_no_bin_entrypoint_non_existent_subpath.out b/cli/tests/testdata/npm/deno_run_no_bin_entrypoint_non_existent_subpath.out index 06d7292b0..ea5ee3d35 100644 --- a/cli/tests/testdata/npm/deno_run_no_bin_entrypoint_non_existent_subpath.out +++ b/cli/tests/testdata/npm/deno_run_no_bin_entrypoint_non_existent_subpath.out @@ -1,3 +1,3 @@ -error: package '@denotest/esm-basic' did not have a bin property in its package.json +error: '[WILDCARD]@denotest[WILDCARD]esm-basic[WILDCARD]package.json' did not have a bin property Fallback failed: Cannot find module 'file:///[WILDCARD]/non-existent.js' |