opencode-swarm-plugin 0.23.1 → 0.23.4
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +27 -0
- package/package.json +2 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
$ bun build ./src/index.ts --outdir ./dist --target node --external @electric-sql/pglite --external swarm-mail && bun build ./src/plugin.ts --outfile ./dist/plugin.js --target node --external @electric-sql/pglite --external swarm-mail && tsc
|
|
2
|
-
Bundled 195 modules in
|
|
2
|
+
Bundled 195 modules in 33ms
|
|
3
3
|
|
|
4
4
|
index.js 1.14 MB (entry point)
|
|
5
5
|
|
|
6
|
-
Bundled 196 modules in
|
|
6
|
+
Bundled 196 modules in 31ms
|
|
7
7
|
|
|
8
8
|
plugin.js 1.12 MB (entry point)
|
|
9
9
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# opencode-swarm-plugin
|
|
2
2
|
|
|
3
|
+
## 0.23.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`2d0fe9f`](https://github.com/joelhooks/opencode-swarm-plugin/commit/2d0fe9fc6278874ea6c4a92f0395cbdd11c4e994)]:
|
|
8
|
+
- swarm-mail@0.1.2
|
|
9
|
+
|
|
10
|
+
## 0.23.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`9c4e4f9`](https://github.com/joelhooks/opencode-swarm-plugin/commit/9c4e4f9511672ab8598c7202850c87acf1bfd4b7) Thanks [@joelhooks](https://github.com/joelhooks)! - Fix swarm-mail package to include dist folder
|
|
15
|
+
|
|
16
|
+
- Add files field to swarm-mail package.json to explicitly include dist/
|
|
17
|
+
- Previous publish was missing build output, causing "Cannot find module" errors
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`9c4e4f9`](https://github.com/joelhooks/opencode-swarm-plugin/commit/9c4e4f9511672ab8598c7202850c87acf1bfd4b7)]:
|
|
20
|
+
- swarm-mail@0.1.1
|
|
21
|
+
|
|
22
|
+
## 0.23.2
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- [`7f9ead6`](https://github.com/joelhooks/opencode-swarm-plugin/commit/7f9ead65dab1dd5dc9aff57df0871cc390556fe1) Thanks [@joelhooks](https://github.com/joelhooks)! - Fix workspace:\* protocol resolution using bun pack + npm publish
|
|
27
|
+
|
|
28
|
+
Uses bun pack to create tarball (which resolves workspace:\* to actual versions) then npm publish for OIDC trusted publisher support.
|
|
29
|
+
|
|
3
30
|
## 0.23.1
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm-plugin",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.4",
|
|
4
4
|
"description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"publish:pkg": "npm publish --access public --provenance"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
+
"@clack/prompts": "^0.11.0",
|
|
32
33
|
"@opencode-ai/plugin": "^1.0.134",
|
|
33
34
|
"gray-matter": "^4.0.3",
|
|
34
35
|
"ioredis": "^5.4.1",
|