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/no_lockfile_run.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/no_lockfile_run.out')
-rw-r--r-- | tests/specs/lockfile/frozen_lockfile/no_lockfile_run.out | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/tests/specs/lockfile/frozen_lockfile/no_lockfile_run.out b/tests/specs/lockfile/frozen_lockfile/no_lockfile_run.out index 2ae84b110..e482c469f 100644 --- a/tests/specs/lockfile/frozen_lockfile/no_lockfile_run.out +++ b/tests/specs/lockfile/frozen_lockfile/no_lockfile_run.out @@ -3,18 +3,14 @@ error: The lockfile is out of date. Run `deno cache --frozen=false` or rerun wit changes: 1 | - 1 | +{ - 2 | + "version": "3", - 3 | + "packages": { - 4 | + "specifiers": { - 5 | + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" - 6 | + }, - 7 | + "npm": { - 8 | + "@denotest/add@1.0.0": { - 9 | + "integrity": "[WILDCARD]", -10 | + "dependencies": {} -11 | + } -12 | + } -13 | + }, -14 | + "remote": {} -15 | +} -16 | + + 2 | + "version": "4", + 3 | + "specifiers": { + 4 | + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" + 5 | + }, + 6 | + "npm": { + 7 | + "@denotest/add@1.0.0": { + 8 | + "integrity": "[WILDCARD]" + 9 | + } +10 | + } +11 | +} +12 | + |