granola-toolkit 0.34.0 → 0.34.1
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 +2 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -449,6 +449,7 @@ Before pushing changes, run:
|
|
|
449
449
|
```bash
|
|
450
450
|
vp check
|
|
451
451
|
vp test
|
|
452
|
+
npm run coverage
|
|
452
453
|
vp pack
|
|
453
454
|
npm pack --dry-run
|
|
454
455
|
```
|
|
@@ -457,6 +458,7 @@ What those do:
|
|
|
457
458
|
|
|
458
459
|
- `vp check`: formatting, linting, and type checks
|
|
459
460
|
- `vp test`: unit tests
|
|
461
|
+
- `npm run coverage`: unit tests plus a local coverage report in `coverage/coverage-summary.json`
|
|
460
462
|
- `vp pack`: builds the CLI bundle into `dist/cli.js`
|
|
461
463
|
- `npm pack --dry-run`: shows the exact npm package contents without publishing
|
|
462
464
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "granola-toolkit",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.1",
|
|
4
4
|
"description": "Toolkit for exporting and working with Granola meetings, notes, and transcripts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "vp pack",
|
|
36
36
|
"check": "vp check",
|
|
37
|
+
"coverage": "vp test --coverage",
|
|
37
38
|
"dev": "vp pack --watch",
|
|
38
39
|
"fmt": "vp fmt",
|
|
39
40
|
"lint": "vp lint",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
60
|
"@types/node": "^25.5.2",
|
|
61
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
60
62
|
"typescript": "^5.9.3",
|
|
61
63
|
"vite-plus": "0.1.15"
|
|
62
64
|
},
|