Files
pnpm/pnpm11/installing/commands/test/importRecursive.ts
T
Zoltan Kochan fc2f33912e refactor: move the TypeScript pnpm CLI into a pnpm11/ directory (#12537)
The TypeScript pnpm CLI freezes at v11; pnpm 12 will be the Rust pacquet
port. To make that split legible, all TypeScript source, test, and build
directories move under a new top-level pnpm11/ directory. The name states
the version boundary rather than implying a behavioral fork, since the two
stacks are meant to behave identically.

Scope is source-only: the shared workspace root stays at the repo root.
pnpm-workspace.yaml, package.json, pnpm-lock.yaml, .pnpmfile.cjs,
.meta-updater, __patches__, .changeset, .husky, and the lint/spell configs
remain in place, so one pnpm workspace and one Cargo workspace still span
all three products. pnpr/client and pacquet/tasks/registry-mock stay as
cross-product workspace members.

Rewiring the move required:
- pnpm-workspace.yaml globs prefixed with pnpm11/
- root package.json script paths, eslint.config.mjs, tsconfig.lint.json,
  .gitignore, and CODEOWNERS updated
- .meta-updater/src/index.ts literals repointed (pnpm11/pnpm/package.json,
  pnpm11/__utils__, pnpm11/__typings__, and the main package directory)
- regenerated every moved package's repository/homepage URL via meta-updater
- pnpm11/pnpm/bundle-deps.ts and __utils__/scripts/src/typecheck-only.ts
  climb one more level to reach the repo root

.meta-updater stays at the repo root because @pnpm/meta-updater resolves
its config at <cwd>/.meta-updater/main.mjs.

TS CI (.github/workflows/ci.yml) now only runs when pnpm11/-relevant paths
change, via a dorny/paths-filter changes job plus a TS CI / Success
aggregate gate; branch protection should require only that gate.
2026-06-20 14:36:25 +02:00

119 lines
4.2 KiB
TypeScript

/// <reference path="../../../__typings__/index.d.ts" />
import path from 'node:path'
import { expect, test } from '@jest/globals'
import { assertProject } from '@pnpm/assert-project'
import { importCommand } from '@pnpm/installing.commands'
import { fixtures } from '@pnpm/test-fixtures'
import { REGISTRY_MOCK_PORT } from '@pnpm/testing.registry-mock'
import { filterProjectsBySelectorObjectsFromDir } from '@pnpm/workspace.projects-filter'
import { temporaryDirectory } from 'tempy'
const f = fixtures(import.meta.dirname)
const REGISTRY = `http://localhost:${REGISTRY_MOCK_PORT}`
const TMP = temporaryDirectory()
const DEFAULT_OPTS = {
ca: undefined,
cacheDir: path.join(TMP, 'cache'),
cert: undefined,
fetchRetries: 2,
fetchRetryFactor: 90,
fetchRetryMaxtimeout: 90,
fetchRetryMintimeout: 10,
httpsProxy: undefined,
key: undefined,
localAddress: undefined,
lock: false,
lockStaleDuration: 90,
minimumReleaseAge: 0,
networkConcurrency: 16,
offline: false,
preferWorkspacePackages: true,
proxy: undefined,
pnpmHomeDir: '',
configByUri: {},
registries: { default: REGISTRY },
registry: REGISTRY,
rootProjectManifestDir: '',
storeDir: path.join(TMP, 'store'),
strictSsl: false,
userAgent: 'pnpm',
userConfig: {},
useRunningStoreServer: false,
useStoreServer: false,
virtualStoreDirMaxLength: process.platform === 'win32' ? 60 : 120,
}
test('import from shared yarn.lock of monorepo', async () => {
f.prepare('workspace-has-shared-yarn-lock')
const { allProjects, allProjectsGraph, selectedProjectsGraph } = await filterProjectsBySelectorObjectsFromDir(process.cwd(), [])
await importCommand.handler({
...DEFAULT_OPTS,
allProjects: allProjects as any, // eslint-disable-line @typescript-eslint/no-explicit-any
allProjectsGraph,
selectedProjectsGraph,
workspaceDir: process.cwd(),
lockfileDir: process.cwd(),
dir: process.cwd(),
resolutionMode: 'highest', // TODO: this should work with the default resolution mode (TODOv8)
}, [])
const project = assertProject(process.cwd())
const lockfile = project.readLockfile()
expect(lockfile.packages).toHaveProperty(['is-positive@1.0.0'])
expect(lockfile.packages).toHaveProperty(['is-negative@1.0.1'])
// node_modules is not created
project.hasNot('is-positive')
project.hasNot('is-negative')
})
test('import from shared package-lock.json of monorepo', async () => {
f.prepare('workspace-has-shared-package-lock-json')
const { allProjects, allProjectsGraph, selectedProjectsGraph } = await filterProjectsBySelectorObjectsFromDir(process.cwd(), [])
await importCommand.handler({
...DEFAULT_OPTS,
allProjects: allProjects as any, // eslint-disable-line @typescript-eslint/no-explicit-any
allProjectsGraph,
selectedProjectsGraph,
workspaceDir: process.cwd(),
lockfileDir: process.cwd(),
dir: process.cwd(),
resolutionMode: 'highest', // TODO: this should work with the default resolution mode (TODOv8)
}, [])
const project = assertProject(process.cwd())
const lockfile = project.readLockfile()
expect(lockfile.packages).toHaveProperty(['is-positive@1.0.0'])
expect(lockfile.packages).toHaveProperty(['is-negative@1.0.1'])
// node_modules is not created
project.hasNot('is-positive')
project.hasNot('is-negative')
})
test('import from shared npm-shrinkwrap.json of monorepo', async () => {
f.prepare('workspace-has-shared-npm-shrinkwrap-json')
const { allProjects, allProjectsGraph, selectedProjectsGraph } = await filterProjectsBySelectorObjectsFromDir(process.cwd(), [])
await importCommand.handler({
...DEFAULT_OPTS,
allProjects: allProjects as any, // eslint-disable-line @typescript-eslint/no-explicit-any
allProjectsGraph,
selectedProjectsGraph,
workspaceDir: process.cwd(),
lockfileDir: process.cwd(),
dir: process.cwd(),
resolutionMode: 'highest', // TODO: this should work with the default resolution mode (TODOv8)
}, [])
const project = assertProject(process.cwd())
const lockfile = project.readLockfile()
expect(lockfile.packages).toHaveProperty(['is-positive@1.0.0'])
expect(lockfile.packages).toHaveProperty(['is-negative@1.0.1'])
// node_modules is not created
project.hasNot('is-positive')
project.hasNot('is-negative')
})