diff options
Diffstat (limited to 'cli/internal/lockfile/testdata/pnpm-absolute.yaml')
| -rw-r--r-- | cli/internal/lockfile/testdata/pnpm-absolute.yaml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cli/internal/lockfile/testdata/pnpm-absolute.yaml b/cli/internal/lockfile/testdata/pnpm-absolute.yaml new file mode 100644 index 0000000..d39f802 --- /dev/null +++ b/cli/internal/lockfile/testdata/pnpm-absolute.yaml @@ -0,0 +1,38 @@ +lockfileVersion: 5.4 +importers: + packages/a: + specifiers: + another: ^1.0.0 + "@scope/parent": ^1.0.0 + special: npm:Special@1.2.3 + dependencies: + another: 1.0.0 + "@scope/parent": 1.0.0 + special: /Special/1.2.3 + +packages: + /@scope/parent/1.0.0: + resolution: { integrity: junk } + dependencies: + child: /@scope/child/1.0.0 + dev: false + + /@scope/child/1.0.0: + resolution: { integrity: junk } + dev: false + + /another/1.0.0: + resolution: { integrity: junk } + dev: false + dependencies: + foo: 1.0.0 + + /foo/1.0.0: + resolution: { integrity: junk } + dev: false + dependencies: + Special: 1.2.3 + + /Special/1.2.3: + resolution: { integrity: junk } + dev: false |
