foldkit 0.32.0 → 0.33.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foldkit",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "description": "Elm-inspired UI framework powered by Effect",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -159,6 +159,7 @@
159
159
  },
160
160
  "dependencies": {
161
161
  "@floating-ui/dom": "^1.7.5",
162
+ "clsx": "^2.1.1",
162
163
  "snabbdom": "^3.6.3"
163
164
  },
164
165
  "publishConfig": {
@@ -169,10 +170,10 @@
169
170
  },
170
171
  "scripts": {
171
172
  "clean": "rimraf dist *.tsbuildinfo",
172
- "build": "pnpm run clean && tsc -b",
173
- "watch": "tsc -b --watch",
173
+ "build": "pnpm run clean && node scripts/inline-css.js && tsc -b",
174
+ "watch": "node scripts/inline-css.js && tsc -b --watch",
174
175
  "lint": "eslint src --ignore-pattern '**/*.test.ts'",
175
- "typecheck": "tsc -b --noEmit",
176
+ "typecheck": "node scripts/inline-css.js && tsc -b --noEmit",
176
177
  "test": "vitest run",
177
178
  "docs": "typedoc"
178
179
  }