diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-26 19:01:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 23:01:50 +0000 |
commit | e13230226fe91498b3a5f28a8de6edbe4f164944 (patch) | |
tree | 680687d66cb0725601008bed14fa7c2c8be2054c /tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out | |
parent | ba58628601057c6f996cbad287fcfbe353872368 (diff) |
feat: lockfile v4 by default (#25165)
This won't be fully stabilized until 2.0 is released.
Diffstat (limited to 'tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out')
-rw-r--r-- | tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out b/tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out index 9b2efa462..749c69587 100644 --- a/tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out +++ b/tests/specs/lockfile/frozen_lockfile/frozen_new_dep_dynamic_npm.out @@ -1,15 +1,14 @@ Download http://localhost:4260/@denotest/subtract error: Uncaught (in promise) TypeError: The lockfile is out of date. Run `deno cache --frozen=false` or rerun with `--frozen=false` to update it. changes: - 5 | - "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" - 5 | + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0", - 6 | + "npm:@denotest/subtract@1": "npm:@denotest/subtract@1.0.0" -11 | - } -12 | + }, -13 | + "@denotest/subtract@1.0.0": { -14 | + "integrity": "[WILDCARD]", -15 | + "dependencies": {} -16 | + } + 4 | - "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" + 4 | + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0", + 5 | + "npm:@denotest/subtract@1": "npm:@denotest/subtract@1.0.0" + 9 | - } +10 | + }, +11 | + "@denotest/subtract@1.0.0": { +12 | + "integrity": "[WILDCARD]" +13 | + } const { subtract } = await import(scheme + "@denotest/subtract@1"); ^ at [WILDCARD] |