@csszyx/mcp-server 0.15.2 → 0.15.3

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 +7 -3
  2. package/package.json +4 -4
package/llms-full.txt CHANGED
@@ -4087,9 +4087,13 @@ the built HTML carries no executable inline script and a strict CSP
4087
4087
  If an `sz`-generated utility also appears as a static string or template quasi in a
4088
4088
  source-level `class` or `className` attribute/property (including a `clsx(...)`
4089
4089
  expression), csszyx keeps that class unmangled. This ensures raw and `sz` consumers
4090
- continue to reference the same emitted rule. Use `mangleExclude` when the class is
4091
- only visible through an imported constant, DOM selector/class API, ignored
4092
- dependency, downstream macro, or another value unavailable to the source scan.
4090
+ continue to reference the same emitted rule. When something else depends on the
4091
+ class NAME a stylesheet matching by attribute (`[class*="bg-tag"]`), a DOM
4092
+ query, a class assembled outside any visible `className` list it in
4093
+ `production.manglePreserve` (exact name, or a prefix ending in `*`); the
4094
+ hybrid-hazard warning prints a paste-ready value. `production.mangleExclude` is
4095
+ the other switch: it keeps the allocator from producing a token equal to a short
4096
+ class in third-party CSS, and never keeps a csszyx class from being renamed.
4093
4097
 
4094
4098
  Final-output class mangling is available in Vite, Webpack, and Rollup. The esbuild
4095
4099
  adapter keeps class names readable (and warns when `production.mangle: true` is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@csszyx/mcp-server",
3
- "version": "0.15.2",
3
+ "version": "0.15.3",
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",
@@ -28,9 +28,9 @@
28
28
  "node": "^22.18.0 || >=24.11.0"
29
29
  },
30
30
  "dependencies": {
31
- "@csszyx/cli": "0.15.2",
32
- "@csszyx/compiler": "0.15.2",
33
- "@csszyx/unplugin": "0.15.2",
31
+ "@csszyx/cli": "0.15.3",
32
+ "@csszyx/compiler": "0.15.3",
33
+ "@csszyx/unplugin": "0.15.3",
34
34
  "@modelcontextprotocol/sdk": "^1.30.0",
35
35
  "zod": "^4.4.3"
36
36
  },