feat(plugin): add registry name handling and release age exclusion for pnpm workspace
CI / python runtime / release-shaped Linux x64 (push) Has been skipped
CI / node 24 / static (push) Has been cancelled
CI / node 24 / coverage (push) Has been cancelled
CI / node 24 / snapshots and artifacts (push) Has been cancelled
CI / node 22.19 (push) Has been cancelled
CI / node 26 (push) Has been cancelled
CI / python 3.10 / keyless SDK (push) Has been cancelled
CI / windows node 24 / wine blocking (push) Has been cancelled
CI / wine apt cache (push) Has been cancelled
CI / windows node 24 / native complete (push) Has been cancelled
CI / serial / linux (push) Has been cancelled
CI / serial / linux (self-hosted standby) (push) Has been cancelled
CI / serial / macos (push) Has been cancelled
CI / serial / windows (self-hosted standby) (push) Has been cancelled
CI / larger-runner-benchmark (16, linux, dsh-ubuntu-24-04-16core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (16, windows, dsh-windows-2025-16core, production-site) (push) Has been cancelled
CI / larger-runner-benchmark (32, linux, dsh-ubuntu-24-04-32core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (32, windows, dsh-windows-2025-32core, production-site) (push) Has been cancelled
CI / larger-runner-benchmark (4, linux, dsh-ubuntu-24-04-4core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (4, windows, dsh-windows-2025-4core, production-site) (push) Has been cancelled
CI / larger-runner-benchmark (64, linux, dsh-ubuntu-24-04-64core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (64, windows, dsh-windows-2025-64core, production-site) (push) Has been cancelled
CI / larger-runner-benchmark (8, linux, dsh-ubuntu-24-04-8core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (8, windows, dsh-windows-2025-8core, production-site) (push) Has been cancelled
CI / larger-runner-benchmark (96, linux, dsh-ubuntu-24-04-96core, typecheck) (push) Has been cancelled
CI / larger-runner-benchmark (96, windows, dsh-windows-2025-96core, production-site) (push) Has been cancelled
CI / consolidated-runner-benchmark (16, linux, dsh-ubuntu-24-04-16core, 16) (push) Has been cancelled
CI / consolidated-runner-benchmark (16, windows, dsh-windows-2025-16core, 2) (push) Has been cancelled
CI / consolidated-runner-benchmark (32, linux, dsh-ubuntu-24-04-32core, 32) (push) Has been cancelled
CI / consolidated-runner-benchmark (32, windows, dsh-windows-2025-32core, 2) (push) Has been cancelled
CI / consolidated-runner-benchmark (4, linux, dsh-ubuntu-24-04-4core, 4) (push) Has been cancelled
CI / consolidated-runner-benchmark (4, windows, dsh-windows-2025-4core, 2) (push) Has been cancelled
CI / consolidated-runner-benchmark (64, linux, dsh-ubuntu-24-04-64core, 32) (push) Has been cancelled
CI / consolidated-runner-benchmark (64, windows, dsh-windows-2025-64core, 2) (push) Has been cancelled
CI / consolidated-runner-benchmark (8, linux, dsh-ubuntu-24-04-8core, 8) (push) Has been cancelled
CI / consolidated-runner-benchmark (8, windows, dsh-windows-2025-8core, 2) (push) Has been cancelled
CI / consolidated-runner-benchmark (96, linux, dsh-ubuntu-24-04-96core, 32) (push) Has been cancelled
CI / consolidated-runner-benchmark (96, windows, dsh-windows-2025-96core, 2) (push) Has been cancelled
E2E (real DeepSeek API) / e2e (push) Has been cancelled
Release (vendor) / Pack npm tarballs (push) Has been cancelled
Release (dsh) / Pack npm tarballs (push) Has been cancelled
Sandbox / sandbox e2e (seatbelt, macos-latest) (push) Has been cancelled
Sandbox / sandbox e2e (landlock, ubuntu-24.04) (push) Has been cancelled
Sandbox / sandbox e2e (landlock, ubuntu-24.04-arm) (push) Has been cancelled
Sandbox / sandbox e2e (bwrap, ubuntu-latest) (push) Has been cancelled
CI / all checks passed (push) Has been cancelled
Release (vendor) / Publish to npm (push) Has been cancelled
Release (dsh) / Publish to npm (push) Has been cancelled

This commit is contained in:
Pine
2026-08-16 16:11:22 +08:00
parent 43c4b825e8
commit 98b3221eec
5 changed files with 158 additions and 49 deletions
@@ -1,11 +1,13 @@
import { chmodSync, mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'
import { mkdirSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'
import { tmpdir } from 'node:os'
import { join } from 'node:path'
import { afterEach, describe, expect, it } from 'vitest'
import { load } from 'js-yaml'
import { readProfileManifest } from '@deepseek-ai/dsh-app-boot'
import {
composeOfflineBundle, INSTALL_REGISTRIES, parseBlockedBuilds, registryPackageName,
resolvePnpm, resolvePnpmCommand, runPnpmInstall, writeAllowBuilds,
writeReleaseAgeExclude,
runPnpmInstallWithRegistries, runPnpmRemove, uninstallBundle,
} from '../src/install.ts'
@@ -67,24 +69,6 @@ function makeBlockedBuildPnpm(dir: string): string {
return file
}
/**
* A self-executable fake pnpm (shebang + executable bit) that records its argv
* and exits 0 — simulates a `pnpm` command invoked directly off PATH, without a
* `node` prefix (as the PATH-pnpm fallback does).
*/
function makeExecutablePnpm(dir: string): string {
const file = join(dir, 'pnpm-path')
writeFileSync(file, [
'#!/usr/bin/env node',
"const fs = require('fs')",
'const args = process.argv.slice(2)',
'fs.writeFileSync(process.env.RECORD, JSON.stringify(args))',
'process.exit(0)',
].join('\n'))
chmodSync(file, 0o755)
return file
}
/**
* A fake pnpm that, for `remove <name>`, drops the named dependency from the
* profile's package.json (as pnpm does) and exits 0.
@@ -171,7 +155,7 @@ describe('runPnpmInstall', () => {
}
})
it('passes minimum-release-age-exclude for a registry name', () => {
it('never passes a release-age CLI flag (the exemption is a workspace setting, not a flag)', () => {
const dir = makeProfile()
const record = join(dir, 'record.json')
const pnpm = makeRecordingPnpm(dir)
@@ -181,32 +165,28 @@ describe('runPnpmInstall', () => {
runPnpmInstall({
binName: 'dsh', profileDir: dir, installAnchor: join(dir, 'package.json'),
nodeBin: process.execPath, pnpmCjs: pnpm, spec: 'x',
before: readProfileManifest('dsh', dir), minimumReleaseAgeExclude: 'x',
before: readProfileManifest('dsh', dir),
})
const args = JSON.parse(readFileSync(record, 'utf8')) as string[]
expect(args).toContain('--minimum-release-age-exclude=x')
expect(args).toEqual(['add', 'x'])
expect(args.some(arg => arg.includes('minimum-release-age'))).toBe(false)
} finally {
delete process.env.RECORD
delete process.env.EXIT
}
})
it('omits minimum-release-age-exclude for a PATH-pnpm fallback (may be an older pnpm)', () => {
it('writes the minimum-release-age exemption into pnpm-workspace.yaml, preserving existing settings', () => {
const dir = makeProfile()
const record = join(dir, 'record.json')
const pnpm = makeExecutablePnpm(dir)
process.env.RECORD = record
try {
runPnpmInstall({
binName: 'dsh', profileDir: dir, installAnchor: join(dir, 'package.json'),
nodeBin: undefined, pnpmCjs: pnpm, spec: 'x',
before: readProfileManifest('dsh', dir), minimumReleaseAgeExclude: 'x',
})
const args = JSON.parse(readFileSync(record, 'utf8')) as string[]
expect(args).toEqual(['add', 'x'])
} finally {
delete process.env.RECORD
}
const workspacePath = join(dir, 'pnpm-workspace.yaml')
writeFileSync(workspacePath, 'autoInstallPeers: false\nallowBuilds:\n node-pty: true\n')
writeReleaseAgeExclude(dir, ['dsh-theme-plugin'])
writeReleaseAgeExclude(dir, ['@scope/pkg'])
const doc = JSON.parse(JSON.stringify(load(readFileSync(workspacePath, 'utf8')))) as Record<string, unknown>
expect(doc.minimumReleaseAgeExclude).toEqual(['dsh-theme-plugin', '@scope/pkg'])
// Existing settings survive.
expect((doc.allowBuilds as Record<string, unknown>).node_pty ?? (doc.allowBuilds as Record<string, unknown>)['node-pty']).toBe(true)
expect(doc.autoInstallPeers).toBe(false)
})
it('returns pendingBuilds when pnpm blocks build scripts', () => {