Files
pnpm/cli/common-cli-options-help/package.json
Zoltan Kochan aa93759d9b chore(release): drop eslint from lib prepublishOnly (#11320)
Library packages had `prepublishOnly: pn compile`, which expands to
`tsgo --build && pn lint --fix`. During `pn release` that runs eslint
against ~150 packages for no benefit — the code has already been linted
in CI and the release flow's upfront compile has already built dist/.
Switch lib prepublishOnly to a bare `tsgo --build` so the safety-net
compile stays but the per-package eslint cost is gone.
2026-04-21 01:18:03 +02:00

42 lines
993 B
JSON

{
"name": "@pnpm/cli.common-cli-options-help",
"version": "1100.0.0",
"description": "Help for some common CLI options",
"keywords": [
"pnpm",
"pnpm11"
],
"license": "MIT",
"funding": "https://opencollective.com/pnpm",
"repository": "https://github.com/pnpm/pnpm/tree/main/cli/common-cli-options-help",
"homepage": "https://github.com/pnpm/pnpm/tree/main/cli/common-cli-options-help#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"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"test": "pn compile",
"prepublishOnly": "tsgo --build",
"compile": "tsgo --build && pn lint --fix"
},
"devDependencies": {
"@pnpm/cli.common-cli-options-help": "workspace:*"
},
"engines": {
"node": ">=22.13"
},
"jest": {
"preset": "@pnpm/jest-config"
}
}