You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CodeMirror 6 extension implementing the Model Context Protocol for `@resource` mention and `/prompt` command completions. Published to npm as `@marimo-team/codemirror-mcp` and used by marimo's editor.
4
+
5
+
## Development
6
+
7
+
```bash
8
+
pnpm install --ignore-scripts --frozen-lockfile # CI install
9
+
pnpm test# vitest
10
+
pnpm run lint # biome check --write (autofix.ci runs this on PRs)
11
+
pnpm exec biome ci .# non-mutating lint CI enforces
12
+
pnpm run typecheck # tsc --noEmit
13
+
pnpm run demo # vite build of demo/
14
+
```
15
+
16
+
- Install with `--ignore-scripts`: the `prepare` script otherwise runs `husky install && pnpm build` on every install.
17
+
- Release: `pnpm run release` (pnpm version) bumps + tags; pushing a `v*` tag triggers release.yml, which publishes to npm via OIDC.
0 commit comments