allagents 1.12.0-next.1 → 1.12.1-next.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/dist/index.js +4 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -42256,7 +42256,7 @@ var package_default;
|
|
|
42256
42256
|
var init_package = __esm(() => {
|
|
42257
42257
|
package_default = {
|
|
42258
42258
|
name: "allagents",
|
|
42259
|
-
version: "1.12.
|
|
42259
|
+
version: "1.12.1-next.1",
|
|
42260
42260
|
packageManager: "bun@1.3.12",
|
|
42261
42261
|
description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
42262
42262
|
type: "module",
|
|
@@ -42285,9 +42285,9 @@ var init_package = __esm(() => {
|
|
|
42285
42285
|
release: "bun run scripts/release.ts",
|
|
42286
42286
|
"release:next": "bun run scripts/release.ts next",
|
|
42287
42287
|
"release:finalize": "bun run scripts/release.ts finalize",
|
|
42288
|
-
prepublishOnly: `test "$ALLOW_PUBLISH" = '1' || (echo 'ERROR: Use
|
|
42289
|
-
"publish:latest": "bun run build &&
|
|
42290
|
-
"publish:next": "bun run build &&
|
|
42288
|
+
prepublishOnly: `test "$ALLOW_PUBLISH" = '1' || (echo 'ERROR: Use the GitHub Actions Publish workflow' && exit 1)`,
|
|
42289
|
+
"publish:latest": "bun run build && bun scripts/publish.ts latest",
|
|
42290
|
+
"publish:next": "bun run build && bun scripts/publish.ts next",
|
|
42291
42291
|
"promote:latest": "bun scripts/tag-channel.ts latest"
|
|
42292
42292
|
},
|
|
42293
42293
|
keywords: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "allagents",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.1-next.1",
|
|
4
4
|
"packageManager": "bun@1.3.12",
|
|
5
5
|
"description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
|
|
6
6
|
"type": "module",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"release": "bun run scripts/release.ts",
|
|
30
30
|
"release:next": "bun run scripts/release.ts next",
|
|
31
31
|
"release:finalize": "bun run scripts/release.ts finalize",
|
|
32
|
-
"prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use
|
|
33
|
-
"publish:latest": "bun run build &&
|
|
34
|
-
"publish:next": "bun run build &&
|
|
32
|
+
"prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use the GitHub Actions Publish workflow' && exit 1)",
|
|
33
|
+
"publish:latest": "bun run build && bun scripts/publish.ts latest",
|
|
34
|
+
"publish:next": "bun run build && bun scripts/publish.ts next",
|
|
35
35
|
"promote:latest": "bun scripts/tag-channel.ts latest"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|