@workbench-ai/workbench 0.0.99 → 0.0.100
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/dist/index.js +7 -4
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -419,7 +419,7 @@ export async function runCli(argv, io = {
|
|
|
419
419
|
? undefined
|
|
420
420
|
: await runEvidenceFingerprints(core).catch(() => undefined);
|
|
421
421
|
if (parsed.flags["dry-run"] !== true) {
|
|
422
|
-
writeCliProgress(io, `workbench sync: syncing ${optionalPositional(parsed, 1) ?? "default remote"}.`);
|
|
422
|
+
writeCliProgress(parsed, io, `workbench sync: syncing ${optionalPositional(parsed, 1) ?? "default remote"}.`);
|
|
423
423
|
}
|
|
424
424
|
const result = await syncWorkbenchRemote({
|
|
425
425
|
...core,
|
|
@@ -463,9 +463,9 @@ export async function runCli(argv, io = {
|
|
|
463
463
|
let remote;
|
|
464
464
|
let result;
|
|
465
465
|
try {
|
|
466
|
-
writeCliProgress(io, "workbench publish: preparing Cloud skill.");
|
|
466
|
+
writeCliProgress(parsed, io, "workbench publish: preparing Cloud skill.");
|
|
467
467
|
remote = await ensurePublishRemote(parsed);
|
|
468
|
-
writeCliProgress(io, `workbench publish: publishing ${optionalPositional(parsed, 1) ?? "current"} source.`);
|
|
468
|
+
writeCliProgress(parsed, io, `workbench publish: publishing ${optionalPositional(parsed, 1) ?? "current"} source.`);
|
|
469
469
|
result = await publishWorkbenchVersion({
|
|
470
470
|
...core,
|
|
471
471
|
version: optionalPositional(parsed, 1),
|
|
@@ -1599,7 +1599,10 @@ function writeCloudProgress(io, message, enabled = true) {
|
|
|
1599
1599
|
}
|
|
1600
1600
|
io.stderr.write(`${message}\n`);
|
|
1601
1601
|
}
|
|
1602
|
-
function writeCliProgress(io, message) {
|
|
1602
|
+
function writeCliProgress(parsed, io, message) {
|
|
1603
|
+
if (parsed.flags.json === true) {
|
|
1604
|
+
return;
|
|
1605
|
+
}
|
|
1603
1606
|
io.stderr.write(`${message}\n`);
|
|
1604
1607
|
}
|
|
1605
1608
|
function formatCloudRunStatuses(runs) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workbench-ai/workbench",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.100",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/workbench-ai/workbench.git",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"yaml": "^2.8.2",
|
|
24
|
-
"@workbench-ai/workbench-built-in-adapters": "0.0.
|
|
25
|
-
"@workbench-ai/workbench-protocol": "0.0.
|
|
26
|
-
"@workbench-ai/workbench-core": "0.0.
|
|
27
|
-
"@workbench-ai/workbench-contract": "0.0.
|
|
24
|
+
"@workbench-ai/workbench-built-in-adapters": "0.0.100",
|
|
25
|
+
"@workbench-ai/workbench-protocol": "0.0.100",
|
|
26
|
+
"@workbench-ai/workbench-core": "0.0.100",
|
|
27
|
+
"@workbench-ai/workbench-contract": "0.0.100"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@tailwindcss/postcss": "^4.2.2",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"react-dom": "^19.2.0",
|
|
36
36
|
"typescript": "^5.9.2",
|
|
37
37
|
"vitest": "^3.2.4",
|
|
38
|
-
"@workbench-ai/workbench-ui": "0.0.
|
|
38
|
+
"@workbench-ai/workbench-ui": "0.0.100"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "rm -rf dist && tsc -p tsconfig.json && chmod 755 dist/workbench.js && node ./scripts/build-dev-open-assets.mjs",
|