kerfjs 0.12.0 → 0.12.1
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 +5 -0
- package/README.md +4 -0
- package/ai/manifest.json +1 -1
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -19,6 +19,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
19
19
|
- `kerfjs` npm package now bundles the drop-in AI-assistant configs at `ai/skill.md`, `ai/cursorrules`, and `ai/manifest.json` — so `npm install kerfjs` lands them directly on disk instead of asking consumers to find them on GitHub. The repo-root `kerf.claude-skill.md` / `kerf.cursorrules` remain the source of truth; `ai/` is regenerated by `scripts/sync-ai-bundle.mjs` and kept honest by the new `npm run check:ai-bundle-in-sync` gate (wired into `npm run check`). Each bundled file carries a `kerf-skill-version` line + a `KERF-APP-CANONICAL-END` marker so the new ESLint rule can detect drift and auto-fix only the kerf-maintained section while preserving consumer customizations below the marker. See `docs/12-ai-assistant-configs.md`.
|
|
20
20
|
- `eslint-plugin-kerfjs` v0.9.0 adds `kerfjs/ai-assistant-configs` (`warn` in recommended config) — once per lint pass, checks the consumer's `.claude/skills/kerf-app/SKILL.md` and `.cursorrules` against the bundled `kerfjs/ai/manifest.json`. Reports `missing` / `stale` / `forked` states; `eslint --fix` writes the bundled canonical above the `KERF-APP-CANONICAL-END` marker and preserves the consumer's append zone below it (the "versioned-section preservation" strategy). Granular disable via `['warn', { claude: false, cursor: true }]`.
|
|
21
21
|
|
|
22
|
+
## [0.12.1] - 2026-05-22
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
- Add GitHub Sponsors link to README, homepage, and npm `funding` field
|
|
26
|
+
|
|
22
27
|
## [0.12.0] - 2026-05-22
|
|
23
28
|
|
|
24
29
|
|
package/README.md
CHANGED
|
@@ -192,6 +192,10 @@ A *kerf* is the narrow strip of material a saw blade removes when cutting — th
|
|
|
192
192
|
|
|
193
193
|
Pre-1.0 — API may evolve. See [CHANGELOG.md](./CHANGELOG.md) for the current version and what's shipped.
|
|
194
194
|
|
|
195
|
+
## Sponsor
|
|
196
|
+
|
|
197
|
+
If kerf saves you time on a project you ship, [sponsoring on GitHub](https://github.com/sponsors/brianwestphal) keeps it actively maintained. Any amount is appreciated.
|
|
198
|
+
|
|
195
199
|
## License
|
|
196
200
|
|
|
197
201
|
MIT
|
package/ai/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kerfjs",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "Tiny reactive UI framework — fine-grained signals + DOM morphing + JSX. Apply the smallest possible cut to update your DOM.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -14,6 +14,10 @@
|
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/brianwestphal/kerf/issues"
|
|
16
16
|
},
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "github",
|
|
19
|
+
"url": "https://github.com/sponsors/brianwestphal"
|
|
20
|
+
},
|
|
17
21
|
"keywords": [
|
|
18
22
|
"reactive",
|
|
19
23
|
"signals",
|