opencode-supabase 0.0.5 → 0.0.6
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/README.md +14 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -45,3 +45,17 @@ Then share that newest session log file in the issue. In our testing, the sessio
|
|
|
45
45
|
## Reference
|
|
46
46
|
|
|
47
47
|
- Supabase Management API: https://supabase.com/docs/reference/api/introduction
|
|
48
|
+
|
|
49
|
+
## Releasing
|
|
50
|
+
|
|
51
|
+
For user-visible or package-relevant changes, add a changeset in your PR:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
bun run changeset
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Commit the generated `.changeset/*.md` file with your code change.
|
|
58
|
+
|
|
59
|
+
Maintainers use a release PR workflow driven by Changesets. Internal-only changes can use the `no-changeset` label when appropriate.
|
|
60
|
+
|
|
61
|
+
See `docs/releasing.md` for the full maintainer runbook.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-supabase",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenCode plugin for Supabase integration with server and TUI components",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -26,7 +26,10 @@
|
|
|
26
26
|
"lint": "biome check .",
|
|
27
27
|
"verify:pack": "npm pack --dry-run",
|
|
28
28
|
"typecheck": "bunx tsc --noEmit",
|
|
29
|
-
"test": "bun test"
|
|
29
|
+
"test": "bun test",
|
|
30
|
+
"changeset": "changeset",
|
|
31
|
+
"version-packages": "changeset version",
|
|
32
|
+
"release": "changeset publish"
|
|
30
33
|
},
|
|
31
34
|
"dependencies": {
|
|
32
35
|
"@opencode-ai/plugin": "latest",
|
|
@@ -36,6 +39,7 @@
|
|
|
36
39
|
},
|
|
37
40
|
"devDependencies": {
|
|
38
41
|
"@biomejs/biome": "^1.9.4",
|
|
42
|
+
"@changesets/cli": "^2.30.0",
|
|
39
43
|
"@opentui/core": "0.1.95",
|
|
40
44
|
"@opentui/solid": "0.1.95",
|
|
41
45
|
"@types/bun": "latest",
|