@dragonmastery/zinia-forms-core 0.4.6 → 0.4.7
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/dist/tailwind.css +14 -0
- package/package.json +4 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zinia Forms Core - Tailwind Source Configuration
|
|
3
|
+
*
|
|
4
|
+
* Import this file in your app's CSS to enable Tailwind class scanning
|
|
5
|
+
* for zinia-forms-core components.
|
|
6
|
+
*
|
|
7
|
+
* Usage in your app.css:
|
|
8
|
+
* @import '@dragonmastery/zinia-forms-core/tailwind.css';
|
|
9
|
+
*
|
|
10
|
+
* Note: This @source directive scans the compiled JavaScript bundle in dist/.
|
|
11
|
+
* For development with source files, you may need to add an additional @source
|
|
12
|
+
* directive pointing to the package's source files if available.
|
|
13
|
+
*/
|
|
14
|
+
@source "./**/*.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dragonmastery/zinia-forms-core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "A modern, type-safe form system for Vue 3 with Zod validation and automatic component generation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"types": "./dist/index.d.ts",
|
|
34
34
|
"import": "./dist/index.js",
|
|
35
35
|
"default": "./dist/index.js"
|
|
36
|
-
}
|
|
36
|
+
},
|
|
37
|
+
"./tailwind.css": "./dist/tailwind.css"
|
|
37
38
|
},
|
|
38
39
|
"files": [
|
|
39
40
|
"dist",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
},
|
|
47
48
|
"scripts": {
|
|
48
49
|
"build": "tsup",
|
|
50
|
+
"postbuild": "node scripts/copy-tailwind.js",
|
|
49
51
|
"dev": "tsup --watch",
|
|
50
52
|
"type-check": "tsc --noEmit",
|
|
51
53
|
"clean": "rimraf .turbo node_modules dist",
|