mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-28 20:11:48 -04:00
- **`pnpm why` now shows a reverse dependency tree.** The searched package appears at the root with its dependants as branches, walking back to workspace roots. This replaces the previous forward-tree output which was noisy and hard to read for deeply nested dependencies. - **Replaced `archy` with a new `@pnpm/text.tree-renderer` package** that renders trees using box-drawing characters (├──, └──, │) and supports grouped sections, dim connectors, and deduplication markers. - **Show peer dependency hash suffixes** in `pnpm list` and `pnpm why` output to distinguish between different peer-dep variants of the same package. - **Improved `pnpm list` visual output:** bold importer nodes, dimmed workspace paths, dependency grouping, package count summary, and deterministic sort order. - **Added `--long` support to `pnpm why`** and the ability to read package manifests from the CAS store. - **Deduplicated shared code** between `list` and `why` commands into a common module, and reused `getPkgInfo` in the why tree builder.
330 lines
7.6 KiB
TypeScript
330 lines
7.6 KiB
TypeScript
/// <reference path="../../../__typings__/index.d.ts" />
|
|
import path from 'path'
|
|
import { WANTED_LOCKFILE } from '@pnpm/constants'
|
|
import { list, why } from '@pnpm/plugin-commands-listing'
|
|
import { prepare, preparePackages } from '@pnpm/prepare'
|
|
|
|
import execa from 'execa'
|
|
import { stripVTControlCharacters as stripAnsi } from 'util'
|
|
import { sync as writeYamlFile } from 'write-yaml-file'
|
|
|
|
const pnpmBin = path.join(import.meta.dirname, '../../../pnpm/bin/pnpm.mjs')
|
|
|
|
test('listing packages', async () => {
|
|
prepare({
|
|
dependencies: {
|
|
'is-positive': '1.0.0',
|
|
},
|
|
devDependencies: {
|
|
'is-negative': '1.0.0',
|
|
},
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'install'])
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dev: false,
|
|
dir: process.cwd(),
|
|
optional: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
└── is-positive@1.0.0
|
|
|
|
1 package`)
|
|
}
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
optional: false,
|
|
production: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ devDependencies:
|
|
└── is-negative@1.0.0
|
|
|
|
1 package`)
|
|
}
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
├── is-positive@1.0.0
|
|
│
|
|
│ devDependencies:
|
|
└── is-negative@1.0.0
|
|
|
|
2 packages`)
|
|
}
|
|
})
|
|
|
|
test(`listing packages of a project that has an external ${WANTED_LOCKFILE}`, async () => {
|
|
preparePackages([
|
|
{
|
|
name: 'pkg',
|
|
version: '1.0.0',
|
|
|
|
dependencies: {
|
|
'is-positive': '1.0.0',
|
|
},
|
|
},
|
|
])
|
|
|
|
writeYamlFile('pnpm-workspace.yaml', {
|
|
sharedWorkspaceLockfile: true,
|
|
packages: ['**', '!store/**'],
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'recursive', 'install'])
|
|
|
|
process.chdir('pkg')
|
|
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
lockfileDir: path.resolve('..'),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
pkg@1.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
└── is-positive@1.0.0
|
|
|
|
1 package`)
|
|
})
|
|
|
|
// Use a preinstalled fixture
|
|
// Otherwise, we'd need to run the registry mock
|
|
test.skip('list on a project with skipped optional dependencies', async () => {
|
|
prepare()
|
|
|
|
await execa('node', [pnpmBin, 'add', '--no-optional', 'pkg-with-optional', 'is-positive@1.0.0'])
|
|
|
|
{
|
|
const output = await list.handler({
|
|
depth: 10,
|
|
dir: process.cwd(),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
|
|
dependencies:
|
|
is-positive 1.0.0
|
|
pkg-with-optional 1.0.0
|
|
└── not-compatible-with-any-os 1.0.0 skipped`)
|
|
}
|
|
|
|
{
|
|
const output = await list.handler({
|
|
depth: 10,
|
|
dir: process.cwd(),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, ['not-compatible-with-any-os'])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
|
|
dependencies:
|
|
pkg-with-optional 1.0.0
|
|
└── not-compatible-with-any-os 1.0.0 skipped`)
|
|
}
|
|
|
|
{
|
|
const output = await why.handler({
|
|
dir: process.cwd(),
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, ['not-compatible-with-any-os'])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
|
|
dependencies:
|
|
pkg-with-optional 1.0.0
|
|
└── not-compatible-with-any-os 1.0.0 skipped`)
|
|
}
|
|
})
|
|
|
|
// Covers https://github.com/pnpm/pnpm/issues/6873
|
|
test('listing packages should not fail on package that has local file directory in dependencies', async () => {
|
|
preparePackages([
|
|
{
|
|
name: 'dep',
|
|
version: '1.0.0',
|
|
},
|
|
{
|
|
name: 'pkg',
|
|
version: '1.0.0',
|
|
|
|
dependencies: {
|
|
dep: 'file:../dep',
|
|
},
|
|
},
|
|
])
|
|
|
|
const pkgDir = path.resolve('pkg')
|
|
await execa('node', [pnpmBin, 'install'], { cwd: pkgDir })
|
|
|
|
const output = await list.handler({
|
|
dev: false,
|
|
dir: pkgDir,
|
|
optional: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
pkg@1.0.0 ${pkgDir}
|
|
│
|
|
│ dependencies:
|
|
└── dep@file:../dep
|
|
|
|
1 package`)
|
|
})
|
|
|
|
test('listing packages with --lockfile-only', async () => {
|
|
prepare({
|
|
dependencies: {
|
|
'is-positive': '1.0.0',
|
|
},
|
|
devDependencies: {
|
|
'is-negative': '1.0.0',
|
|
},
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'install', '--lockfile-only'])
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dev: false,
|
|
dir: process.cwd(),
|
|
lockfileOnly: true,
|
|
optional: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
└── is-positive@1.0.0
|
|
|
|
1 package`)
|
|
}
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
lockfileOnly: true,
|
|
optional: false,
|
|
production: false,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ devDependencies:
|
|
└── is-negative@1.0.0
|
|
|
|
1 package`)
|
|
}
|
|
|
|
{
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
lockfileOnly: true,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
├── is-positive@1.0.0
|
|
│
|
|
│ devDependencies:
|
|
└── is-negative@1.0.0
|
|
|
|
2 packages`)
|
|
}
|
|
})
|
|
|
|
test('listing packages with --lockfile-only in JSON format', async () => {
|
|
prepare({
|
|
dependencies: {
|
|
'is-positive': '1.0.0',
|
|
},
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'install', '--lockfile-only'])
|
|
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
json: true,
|
|
lockfileOnly: true,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, [])
|
|
|
|
const parsedOutput = JSON.parse(output)
|
|
expect(parsedOutput).toHaveLength(1)
|
|
expect(parsedOutput[0].name).toBe('project')
|
|
expect(parsedOutput[0].dependencies).toHaveProperty('is-positive')
|
|
expect(parsedOutput[0].dependencies['is-positive'].version).toBe('1.0.0')
|
|
})
|
|
|
|
test('listing specific package with --lockfile-only', async () => {
|
|
prepare({
|
|
dependencies: {
|
|
'is-positive': '1.0.0',
|
|
'is-negative': '1.0.0',
|
|
},
|
|
})
|
|
|
|
await execa('node', [pnpmBin, 'install', '--lockfile-only'])
|
|
|
|
const output = await list.handler({
|
|
dir: process.cwd(),
|
|
lockfileOnly: true,
|
|
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
|
|
}, ['is-positive'])
|
|
|
|
expect(stripAnsi(output)).toBe(`Legend: production dependency, optional only, dev only
|
|
|
|
project@0.0.0 ${process.cwd()}
|
|
│
|
|
│ dependencies:
|
|
└── is-positive@1.0.0
|
|
|
|
1 package`)
|
|
})
|