Files
Zoltan Kochan 421ceac0b3 chore: compile pnpm CLI bundle before tests that use it (#11059)
Packages whose tests spawn the local pnpm CLI (pnpm/bin/pnpm.mjs) need
the bundle (pnpm/dist/pnpm.mjs) to exist. Add `pnpm --filter pnpm run
compile` to their test scripts so the bundle is built before tests run.
2026-03-22 10:56:36 +01:00

62 lines
1.9 KiB
JSON

{
"name": "@pnpm/lockfile.make-dedicated-lockfile",
"version": "1000.0.28",
"description": "Creates a dedicated lockfile for a subset of workspace projects",
"keywords": [
"pnpm",
"pnpm11",
"make-dedicated-lockfile"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/lockfile/make-dedicated-lockfile",
"homepage": "https://github.com/pnpm/pnpm/tree/main/lockfile/make-dedicated-lockfile#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"!*.map",
"bin"
],
"bin": "./bin/make-dedicated-lockfile.js",
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "pnpm run compile && pnpm --filter pnpm run compile && pnpm run .test",
"prepublishOnly": "pnpm run compile",
"compile": "tsgo --build && pnpm run lint --fix",
".test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest"
},
"dependencies": {
"@pnpm/error": "workspace:*",
"@pnpm/exec": "catalog:",
"@pnpm/lockfile.fs": "workspace:*",
"@pnpm/lockfile.pruner": "workspace:*",
"@pnpm/logger": "workspace:*",
"@pnpm/releasing.exportable-manifest": "workspace:*",
"@pnpm/types": "workspace:*",
"@pnpm/workspace.project-manifest-reader": "workspace:*",
"@pnpm/workspace.root-finder": "workspace:*",
"ramda": "catalog:",
"rename-overwrite": "catalog:"
},
"devDependencies": {
"@pnpm/lockfile.make-dedicated-lockfile": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@types/ramda": "catalog:",
"execa": "catalog:"
},
"engines": {
"node": ">=22.13"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}