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/adding_npm_dep | |
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/adding_npm_dep')
-rw-r--r-- | tests/specs/lockfile/adding_npm_dep/lock01.out | 18 | ||||
-rw-r--r-- | tests/specs/lockfile/adding_npm_dep/lock02.out | 25 |
2 files changed, 17 insertions, 26 deletions
diff --git a/tests/specs/lockfile/adding_npm_dep/lock01.out b/tests/specs/lockfile/adding_npm_dep/lock01.out index 5d5567dc0..0ed6aa8c7 100644 --- a/tests/specs/lockfile/adding_npm_dep/lock01.out +++ b/tests/specs/lockfile/adding_npm_dep/lock01.out @@ -1,17 +1,13 @@ { - "version": "3", - "packages": { - "specifiers": { - "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" - }, - "npm": { - "@denotest/add@1.0.0": { - "integrity": "[WILDLINE]", - "dependencies": {} - } + "version": "4", + "specifiers": { + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0" + }, + "npm": { + "@denotest/add@1.0.0": { + "integrity": "[WILDLINE]" } }, - "remote": {}, "workspace": { "dependencies": [ "npm:@denotest/add@1", diff --git a/tests/specs/lockfile/adding_npm_dep/lock02.out b/tests/specs/lockfile/adding_npm_dep/lock02.out index 6042b1cb9..7a9da8d29 100644 --- a/tests/specs/lockfile/adding_npm_dep/lock02.out +++ b/tests/specs/lockfile/adding_npm_dep/lock02.out @@ -1,22 +1,17 @@ { - "version": "3", - "packages": { - "specifiers": { - "npm:@denotest/add@1": "npm:@denotest/add@1.0.0", - "npm:@denotest/subtract@1": "npm:@denotest/subtract@1.0.0" + "version": "4", + "specifiers": { + "npm:@denotest/add@1": "npm:@denotest/add@1.0.0", + "npm:@denotest/subtract@1": "npm:@denotest/subtract@1.0.0" + }, + "npm": { + "@denotest/add@1.0.0": { + "integrity": "[WILDLINE]" }, - "npm": { - "@denotest/add@1.0.0": { - "integrity": "[WILDLINE]", - "dependencies": {} - }, - "@denotest/subtract@1.0.0": { - "integrity": "[WILDLINE]", - "dependencies": {} - } + "@denotest/subtract@1.0.0": { + "integrity": "[WILDLINE]" } }, - "remote": {}, "workspace": { "dependencies": [ "npm:@denotest/add@1", |