tailwind-styled-v4 5.0.32 → 5.0.34
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailwind-styled-v4",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.34",
|
|
4
4
|
"packageManager": "npm@11.11.1",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20"
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"scripts": {
|
|
192
192
|
"build": "npm run build:rust && npm run build:packages && rm -rf dist && tsup --config tsup.config.ts && tsup --config tsup.dts.config.ts && npm run example:build",
|
|
193
193
|
"build:packages": "turbo run build --continue",
|
|
194
|
-
"build:rust": "cd native && napi build --release --platform",
|
|
194
|
+
"build:rust": "cd native && napi build --release --platform && cp tailwind-styled-native.$(node -e \"const p=process.platform+'-'+process.arch; console.log(p==='linux-x64'?'linux-x64-gnu':p==='linux-arm64'?'linux-arm64-gnu':p)\").node tailwind-styled-native.node",
|
|
195
195
|
"build:dev": "npm run build:packages && rm -rf dist && tsup --config tsup.config.ts --sourcemap --watch",
|
|
196
196
|
"build:release": "npm run build:rust && npm run build:packages && rm -rf dist && tsup --config tsup.config.ts --no-sourcemap && tsup --config tsup.dts.config.ts && npm run example:build",
|
|
197
197
|
"verify:builds": "npm run build && cd examples/next-js-app && npm install --ignore-scripts && npx tsc --noEmit || echo \"[verify:builds] example typecheck done\"",
|
|
@@ -211,6 +211,7 @@
|
|
|
211
211
|
"schemas:generate": "tsx scripts/generate-json-schemas.ts",
|
|
212
212
|
"schemas:check": "tsx scripts/generate-json-schemas.ts --check",
|
|
213
213
|
"build:fast": "npm run build:packages && rm -rf dist && tsup --config tsup.config.ts && tsup --config tsup.dts.config.ts",
|
|
214
|
+
"build:full": "npm run build:rust && npm run build:packages && rm -rf dist && npx tsup --config tsup.config.ts && npx tsup --config tsup.dts.config.ts",
|
|
214
215
|
"validate": "tsx scripts/validate/final-report.ts",
|
|
215
216
|
"validate:json": "tsx scripts/validate/final-report.ts --json",
|
|
216
217
|
"health:summary": "npx tsx scripts/validate/health-summary.ts",
|