@csszyx/mcp-server 0.14.4 → 0.14.5

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.
Files changed (2) hide show
  1. package/llms-full.txt +11 -0
  2. package/package.json +4 -4
package/llms-full.txt CHANGED
@@ -4269,9 +4269,20 @@ npx @csszyx/cli migrate --resolve-todos .csszyx-todo.json
4269
4269
 
4270
4270
  Reads `.csszyx-todo.json` and applies it during migration.
4271
4271
  `--resolve-todos` is **read-only**: it never writes to the todo file.
4272
+ On a file an earlier pass already migrated, the classes the map decides merge into the
4273
+ element's existing `sz={{ … }}` object; a key that object already sets is left alone and
4274
+ reported, and undecided classes keep their `@sz-todo` marker.
4272
4275
  Still-unresolved classes appear in the console and log only.
4273
4276
  Re-run `--audit` to get a fresh snapshot when ready.
4274
4277
 
4278
+ ### Which engine runs
4279
+
4280
+ `migrate` runs on the native Rust engine, and falls back to the TypeScript one when the
4281
+ platform has no prebuilt binary — both write the same output byte for byte, so the fallback
4282
+ costs time and nothing else. `CSSZYX_MIGRATE_ENGINE=ts` forces the TypeScript engine;
4283
+ `CSSZYX_MIGRATE_ENGINE=rust` requires the native one and fails when it is absent, rather than
4284
+ quietly running the other.
4285
+
4275
4286
  ### `--inject-todos` — mark unrecognized classes in code
4276
4287
 
4277
4288
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@csszyx/mcp-server",
3
- "version": "0.14.4",
3
+ "version": "0.14.5",
4
4
  "description": "Model Context Protocol (MCP) server for csszyx — enables AI agents to understand and generate sz props",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,9 +30,9 @@
30
30
  "dependencies": {
31
31
  "@modelcontextprotocol/sdk": "^1.29.0",
32
32
  "zod": "^4.4.3",
33
- "@csszyx/cli": "0.14.4",
34
- "@csszyx/unplugin": "0.14.4",
35
- "@csszyx/compiler": "0.14.4"
33
+ "@csszyx/compiler": "0.14.5",
34
+ "@csszyx/unplugin": "0.14.5",
35
+ "@csszyx/cli": "0.14.5"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "^22.20.1",