@abide/abide 0.40.1 → 0.40.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.
- package/AGENTS.md +2 -1
- package/CHANGELOG.md +6 -0
- package/README.md +5 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -58,7 +58,8 @@ Aliases: `$server` → `src/server/`, `$ui` → `src/ui/`, `$shared` → `src/sh
|
|
|
58
58
|
| `abide run <file> [args]` | Run a script under the abide preload (jobs, tests) |
|
|
59
59
|
| `abide compile` | Build a standalone server executable with embedded assets |
|
|
60
60
|
| `abide cli` | Build a thin CLI binary that ships the server (`--platforms` cross-compiles) |
|
|
61
|
-
| `abide bundle` | Build a movable, self-contained desktop app bundle for this platform |
|
|
61
|
+
| `abide bundle` | Build a movable, self-contained desktop app bundle for this platform (unsigned `.app` on macOS, flat dir elsewhere) |
|
|
62
|
+
| `abide lsp` | Run the `.abide` language server over stdio (JSON-RPC editor diagnostics) |
|
|
62
63
|
| `abide init-agent` | Write/refresh a `CLAUDE.md` pointer to this surface map |
|
|
63
64
|
|
|
64
65
|
Tests preload the framework: `preload = ["@abide/abide/preload"]` in `bunfig.toml`
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# abide
|
|
2
2
|
|
|
3
|
+
## 0.40.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`315bc88`](https://github.com/briancray/abide/commit/315bc8859e03a81c845f9919a759b6b1f8fb0ea1) - document the abide lsp command and add an if/else template example ([`98b7555`](https://github.com/briancray/abide/commit/98b755509e4788712b7e0516a1cb05f04355a75b))
|
|
8
|
+
|
|
3
9
|
## 0.40.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -133,6 +133,11 @@ async function send() {
|
|
|
133
133
|
<button disabled={!text} class="border px-3">send</button>
|
|
134
134
|
</form>
|
|
135
135
|
|
|
136
|
+
<template if={pinned}>
|
|
137
|
+
<p class="text-xs text-amber-700">room pinned</p>
|
|
138
|
+
<template else><p class="text-xs text-slate-400">not pinned</p></template>
|
|
139
|
+
</template>
|
|
140
|
+
|
|
136
141
|
<template switch={sort}>
|
|
137
142
|
<template case={'newest'}><p class="text-xs">newest first</p></template>
|
|
138
143
|
<template default><p class="text-xs">oldest first</p></template>
|