allagents 1.7.2-next.1 → 1.7.2

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -34899,7 +34899,7 @@ var package_default;
34899
34899
  var init_package = __esm(() => {
34900
34900
  package_default = {
34901
34901
  name: "allagents",
34902
- version: "1.7.2-next.1",
34902
+ version: "1.7.2",
34903
34903
  description: "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
34904
34904
  type: "module",
34905
34905
  bin: {
@@ -34928,7 +34928,7 @@ var init_package = __esm(() => {
34928
34928
  "release:next": "bun run scripts/release.ts next",
34929
34929
  "release:finalize": "bun run scripts/release.ts finalize",
34930
34930
  prepublishOnly: `test "$ALLOW_PUBLISH" = '1' || (echo 'ERROR: Use bun run publish:next, then bun run promote:latest' && exit 1)`,
34931
- publish: "bun run build && ALLOW_PUBLISH=1 npm publish",
34931
+ "publish:latest": "bun run build && ALLOW_PUBLISH=1 npm publish",
34932
34932
  "publish:next": "bun run build && ALLOW_PUBLISH=1 npm publish --tag next",
34933
34933
  "promote:latest": "bun scripts/tag-channel.ts latest"
34934
34934
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allagents",
3
- "version": "1.7.2-next.1",
3
+ "version": "1.7.2",
4
4
  "description": "CLI tool for managing multi-repo AI agent workspaces with plugin synchronization",
5
5
  "type": "module",
6
6
  "bin": {
@@ -29,7 +29,7 @@
29
29
  "release:next": "bun run scripts/release.ts next",
30
30
  "release:finalize": "bun run scripts/release.ts finalize",
31
31
  "prepublishOnly": "test \"$ALLOW_PUBLISH\" = '1' || (echo 'ERROR: Use bun run publish:next, then bun run promote:latest' && exit 1)",
32
- "publish": "bun run build && ALLOW_PUBLISH=1 npm publish",
32
+ "publish:latest": "bun run build && ALLOW_PUBLISH=1 npm publish",
33
33
  "publish:next": "bun run build && ALLOW_PUBLISH=1 npm publish --tag next",
34
34
  "promote:latest": "bun scripts/tag-channel.ts latest"
35
35
  },