opencode-plugin-flow 3.3.3 → 3.3.5
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 +46 -0
- package/README.md +1 -1
- package/dist/cli.js +12 -12
- package/dist/index.js +52 -52
- package/dist/index.js.map +7 -7
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-plugin-flow",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.5",
|
|
4
4
|
"description": "Stateful planning and execution workflow plugin for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"check:release-hygiene": "node ./scripts/cross-area/release-hygiene.mjs",
|
|
30
30
|
"check:pack-invariants": "node ./scripts/cross-area/pack-invariants.mjs",
|
|
31
31
|
"check:bundle-sanity": "node ./scripts/cross-area/bundle-sanity.mjs",
|
|
32
|
+
"check:completion-lane": "bun test tests/runtime/final-completion-gates.test.ts tests/runtime/semantic-invariants.test.ts tests/runtime/hard-invariants.test.ts tests/runtime-recovery.test.ts",
|
|
32
33
|
"smoke:opencode": "node ./scripts/cross-area/opencode-smoke.mjs",
|
|
33
34
|
"smoke:release": "node ./scripts/cross-area/release-smoke.mjs",
|
|
34
35
|
"deadcode": "knip --include files,dependencies,unlisted,unresolved,binaries,catalog",
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
"test:randomized:regression": "bun run build && bun test --randomize --timeout 30000 && bun test --randomize --timeout 30000 --seed=1 && bun test --randomize --timeout 30000 --seed=42",
|
|
44
45
|
"typecheck": "tsc --noEmit",
|
|
45
46
|
"uninstall:opencode": "bun run ./src/cli.ts uninstall",
|
|
46
|
-
"check": "bun run typecheck && bun run lint && bun run build && bun run test && bun run smoke:opencode && bun run check:bundle-sanity"
|
|
47
|
+
"check": "bun run typecheck && bun run lint && bun run build && bun run test && bun run check:architecture-seams:enforce && bun run smoke:opencode && bun run check:bundle-sanity"
|
|
47
48
|
},
|
|
48
49
|
"keywords": [
|
|
49
50
|
"opencode",
|