@vibecodr/cli 1.0.10 → 1.0.11
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 +7 -0
- package/dist/legacy/core/version.d.ts +2 -2
- package/dist/legacy/core/version.js +1 -1
- package/package.json +3 -1
- package/dist/dryrun/README.md +0 -1
- package/dist/dryrun/worker.js +0 -39892
- package/dist/dryrun/worker.js.map +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Pre-1.0.0 history for the `@vibecodr/cli@0.2.x` and `0.1.x` lines lives at [`docs/legacy/CHANGELOG-mcp-cli.md`](docs/legacy/CHANGELOG-mcp-cli.md). The `@vibecodr/vc-tools@0.1.x` line was the other half of the May 2026 merge; its source history is preserved in the archived [`BradenHartsell/vc-tools`](https://github.com/BradenHartsell/vc-tools) repository.
|
|
4
4
|
|
|
5
|
+
## 1.0.11
|
|
6
|
+
|
|
7
|
+
Supersedes 1.0.10 with the same CLI auth guidance plus a release-packaging guard.
|
|
8
|
+
|
|
9
|
+
- `prepack`, `publish:release`, and `verify:artifact` now remove and forbid `dist/dryrun/` so Wrangler dry-run output can never be swept into the npm package.
|
|
10
|
+
- Published after the `vc-tools-api` worker read back `1.0.10`; the runtime behavior remains the first-run guidance from 1.0.10.
|
|
11
|
+
|
|
5
12
|
## 1.0.10
|
|
6
13
|
|
|
7
14
|
Aligns the CLI first-run guidance with the Vibecodr CLI product pages without renaming Agent Computer, MCP Gateway, or the underlying credential lanes.
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const CLI_VERSION = "1.0.
|
|
2
|
-
export declare const VC_TOOLS_VERSION = "1.0.
|
|
1
|
+
export declare const CLI_VERSION = "1.0.11";
|
|
2
|
+
export declare const VC_TOOLS_VERSION = "1.0.11";
|
|
3
3
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecodr/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "The official Vibecodr CLI: hosted browser, hosted computer, capsule uploads, Pulse operations, and agent-client MCP setup under one command.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"preinstall": "node preinstall-check.mjs",
|
|
47
|
+
"prepack": "node scripts/clean-pack-artifacts.mjs",
|
|
48
|
+
"clean:pack-artifacts": "node scripts/clean-pack-artifacts.mjs",
|
|
47
49
|
"build": "tsc -p tsconfig.build.json",
|
|
48
50
|
"check": "npm run check:cli && npm run check:worker",
|
|
49
51
|
"check:cli": "tsc -p tsconfig.json --noEmit",
|
package/dist/dryrun/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
This folder contains the built output assets for the worker "vc-tools-api" generated at 2026-05-30T08:35:46.089Z.
|