xtrm-tools 2.1.5 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -3
- package/cli/dist/index.cjs +960 -900
- package/cli/dist/index.cjs.map +1 -1
- package/hooks/main-guard.mjs +10 -1
- package/package.json +8 -3
- package/project-skills/py-quality-gate/.claude/hooks/quality-check.py +15 -2
- package/project-skills/service-skills-set/install-service-skills.py +41 -11
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test-data.ts +199 -0
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.test.ts +302 -0
- package/project-skills/tdd-guard/reporters/jest/src/JestReporter.ts +201 -0
- package/project-skills/tdd-guard/reporters/jest/src/index.ts +4 -0
- package/project-skills/tdd-guard/reporters/jest/src/types.ts +42 -0
- package/project-skills/tdd-guard/reporters/jest/tsconfig.json +11 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test-data.ts +85 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.test.ts +446 -0
- package/project-skills/tdd-guard/reporters/vitest/src/VitestReporter.ts +110 -0
- package/project-skills/tdd-guard/reporters/vitest/src/index.ts +4 -0
- package/project-skills/tdd-guard/reporters/vitest/src/types.ts +39 -0
- package/project-skills/tdd-guard/reporters/vitest/tsconfig.json +11 -0
- package/project-skills/ts-quality-gate/.claude/hooks/quality-check.cjs +36 -1
package/README.md
CHANGED
|
@@ -289,12 +289,18 @@ npm install -g github:Jaggerxtrm/xtrm-tools@latest
|
|
|
289
289
|
|
|
290
290
|
```bash
|
|
291
291
|
git clone https://github.com/Jaggerxtrm/xtrm-tools.git
|
|
292
|
-
cd xtrm-tools
|
|
293
|
-
npm install # installs dependencies
|
|
294
|
-
npm run build # compiles TypeScript to dist/
|
|
292
|
+
cd xtrm-tools
|
|
293
|
+
npm install # installs root + cli workspace dependencies
|
|
294
|
+
npm run build # compiles CLI TypeScript to cli/dist/
|
|
295
295
|
npm link # registers `xtrm` globally
|
|
296
296
|
```
|
|
297
297
|
|
|
298
|
+
Root package is the single entrypoint for dev/publish:
|
|
299
|
+
- `npm install` (root) installs everything, including `cli/`
|
|
300
|
+
- `npm run build` (root) builds the CLI bundle
|
|
301
|
+
- `npm test` (root) runs CLI tests
|
|
302
|
+
- `npm publish` (root) runs `prepublishOnly` build, then publishes
|
|
303
|
+
|
|
298
304
|
---
|
|
299
305
|
|
|
300
306
|
## CLI User Guide
|