Catch missed content edits from tree restructure
The fe39fcb commit captured the file moves (git mv stages those automatically)
but didn't catch the content edits I made afterward — npm package rename
(@mizan/runtime → @mizan/base), path updates in Makefile/Dockerfile/examples,
and doc updates were all left unstaged at commit time.
This commit lands those:
- npm rename: 3 frontend package.jsons (base/vue/svelte) + mizan-base/src/index.ts + 4 codegen templates
- path updates: Makefile, Dockerfile.test, two Gitea workflows, four example/harness configs
- doc updates: CLAUDE.md, ROADMAP.md, ISSUES.md, docs/AFI_ARCHITECTURE.md
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@mizan/runtime",
|
||||
"name": "@mizan/base",
|
||||
"version": "0.1.0",
|
||||
"description": "Mizan client runtime — context registry, invalidation, fetch. Zero framework dependencies.",
|
||||
"type": "module",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @mizan/runtime — The client state kernel.
|
||||
* @mizan/base — The client state kernel.
|
||||
*
|
||||
* Zero framework dependencies. React, Vue, Svelte — all import from here.
|
||||
*
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "@mizan/svelte",
|
||||
"version": "0.1.0",
|
||||
"description": "Mizan Svelte adapter — stores generated from @mizan/runtime.",
|
||||
"description": "Mizan Svelte adapter — stores generated from @mizan/base.",
|
||||
"type": "module",
|
||||
"peerDependencies": {
|
||||
"svelte": ">=4",
|
||||
"@mizan/runtime": ">=0.1.0"
|
||||
"@mizan/base": ">=0.1.0"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "@mizan/vue",
|
||||
"version": "0.1.0",
|
||||
"description": "Mizan Vue adapter — composables generated from @mizan/runtime.",
|
||||
"description": "Mizan Vue adapter — composables generated from @mizan/base.",
|
||||
"type": "module",
|
||||
"peerDependencies": {
|
||||
"vue": ">=3",
|
||||
"@mizan/runtime": ">=0.1.0"
|
||||
"@mizan/base": ">=0.1.0"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user