@kibitzsh/kibitz 0.0.4 → 0.0.5
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 +7 -8
- package/dist/cli/index.js +2676 -341
- package/dist/core/commentary.js +929 -602
- package/dist/core/platform-support.js +127 -155
- package/dist/core/session-dispatch.js +391 -379
- package/dist/core/watcher.js +852 -829
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -124,13 +124,12 @@ npm run check:model-persistence
|
|
|
124
124
|
|
|
125
125
|
## Release Flow
|
|
126
126
|
|
|
127
|
-
1.
|
|
128
|
-
|
|
129
|
-
- `npm run
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
4. Push git tag/release notes and attach `.vsix` to GitHub release (recommended).
|
|
127
|
+
1. Local smoke and package:
|
|
128
|
+
- `npm run deploy:vscode` (local install to VS Code/Cursor)
|
|
129
|
+
- `npm run package` (builds `.vsix`)
|
|
130
|
+
2. Full guarded release flow:
|
|
131
|
+
- `npm run cr`
|
|
132
|
+
3. `npm run cr` performs checks/build, bumps version, publishes VS Code Marketplace + npm, verifies versions, updates Homebrew formula, and pushes tags.
|
|
134
133
|
|
|
135
134
|
## Distribution Channels
|
|
136
135
|
|
|
@@ -138,7 +137,7 @@ npm run check:model-persistence
|
|
|
138
137
|
|
|
139
138
|
- Create publisher in VS Marketplace (if not already created).
|
|
140
139
|
- Create Azure DevOps PAT with Marketplace publish scopes.
|
|
141
|
-
-
|
|
140
|
+
- Publish with `npm run publish:vscode` (`VSCE_PAT` required).
|
|
142
141
|
- Recommended:
|
|
143
142
|
- publish stable versions to Marketplace,
|
|
144
143
|
- keep `.vsix` artifacts in GitHub Releases for manual install/rollback.
|