Skip to content

Commit 93fecd8

Browse files
berlysiaclaude
andcommitted
style: add explicit 'run' to all pnpm script invocations
pnpmコマンドでスクリプトを呼び出す際、runを明示的に指定するよう統一。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent db17a0e commit 93fecd8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828
"scripts": {
2929
"build:code": "vite build",
3030
"build:type": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir lib",
31-
"build": "pnpm clean && pnpm \"/^build:.*/\"",
31+
"build": "pnpm run clean && pnpm \"/^build:.*/\"",
3232
"perf:clean": "rm -rf perf_results/*",
3333
"perf:exec": "node --experimental-strip-types src/performance/index.ts",
34-
"perf": "pnpm perf:clean && pnpm perf:exec",
34+
"perf": "pnpm run perf:clean && pnpm run perf:exec",
3535
"lint": "eslint \"src/**\"",
3636
"typecheck": "tsc -p tsconfig.json --noEmit",
37-
"prepublishOnly": "pnpm clean && pnpm build",
37+
"prepublishOnly": "pnpm run clean && pnpm run build",
3838
"clean": "rm -rf lib/*",
3939
"test": "vitest",
4040
"test:ci": "vitest run",
4141
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file --release-count 0",
42-
"preversion": "pnpm ci && pnpm build",
43-
"version": "pnpm changelog && git add CHANGELOG.md",
44-
"ci": "pnpm lint && pnpm typecheck && pnpm test:ci",
42+
"preversion": "pnpm run ci && pnpm run build",
43+
"version": "pnpm run changelog && git add CHANGELOG.md",
44+
"ci": "pnpm run lint && pnpm run typecheck && pnpm run test:ci",
4545
"documentation": "typedoc ./src/index.ts ./src/BinaryHeap.ts ./src/PairingHeap.ts ./src/SkewHeap.ts && touch docs/.nojekyll",
4646
"prepare": "git config --local core.hooksPath .githooks && echo 'githooks installed' || echo 'githooks install failed'"
4747
},

0 commit comments

Comments
 (0)