@vibeflow-tools/cli 0.8.0 → 0.8.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/CHANGELOG.md +6 -0
- package/dist/cli/index.js +29 -29
- package/dist/client/kanban-browser.js +11 -11
- package/dist/client/overlay-browser.js +1 -1
- package/dist/index.js +29 -29
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeflow-tools/cli",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Vibeflow CLI for frontend prototyping with LLM assistance — review, annotate, and iterate on HTML prototypes",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Tomislav Zorcec <vibeflow.tools@gmail.com>",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"test:coverage": "vitest run --coverage",
|
|
35
35
|
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
36
36
|
"test:browser": "vitest run --config vitest.pw.config.ts",
|
|
37
|
-
"mutation": "
|
|
38
|
-
"mutation:ci": "
|
|
37
|
+
"mutation": "node scripts/mutation.mjs",
|
|
38
|
+
"mutation:ci": "node scripts/mutation.mjs --all",
|
|
39
39
|
"lint": "tsc --noEmit",
|
|
40
40
|
"prepublishOnly": "npm run build",
|
|
41
41
|
"serve:designs": "node dist/cli/index.js serve ../../docs/ --port 3701"
|