daisyui 2.0.6 → 2.0.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/README.md +1 -1
- package/dist/full.css +1 -1
- package/dist/styled.css +1 -1
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/package.json +15 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daisyui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "daisyUI - Tailwind CSS Components",
|
|
5
5
|
"author": "Pouya Saadeghi",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,16 +44,6 @@
|
|
|
44
44
|
"master"
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
|
-
"devDependencies": {
|
|
48
|
-
"autoprefixer": "10.0.4",
|
|
49
|
-
"postcss": "8.1.10",
|
|
50
|
-
"postcss-clean": "1.2.2",
|
|
51
|
-
"postcss-cli": "8.3.0",
|
|
52
|
-
"postcss-import": "13.0.0",
|
|
53
|
-
"postcss-nested": "5.0.1",
|
|
54
|
-
"prejss-cli": "0.3.3",
|
|
55
|
-
"rtlcss": "3.0.0"
|
|
56
|
-
},
|
|
57
47
|
"scripts": {
|
|
58
48
|
"prebase": "postcss --config src/base src/base/*.css --base src --dir dist",
|
|
59
49
|
"base": "cat dist/base/*.css > dist/base.css",
|
|
@@ -81,8 +71,22 @@
|
|
|
81
71
|
"add": "touch src/components/unstyled/$npm_config_name.css && touch src/components/styled/$npm_config_name.css",
|
|
82
72
|
"postadd": "open src/components/unstyled/$npm_config_name.css && open src/components/styled/$npm_config_name.css"
|
|
83
73
|
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"autoprefixer": "10.0.4",
|
|
76
|
+
"postcss": "8.1.10",
|
|
77
|
+
"postcss-clean": "1.2.2",
|
|
78
|
+
"postcss-cli": "8.3.0",
|
|
79
|
+
"postcss-import": "13.0.0",
|
|
80
|
+
"postcss-nested": "5.0.1",
|
|
81
|
+
"prejss-cli": "0.3.3",
|
|
82
|
+
"rtlcss": "3.0.0"
|
|
83
|
+
},
|
|
84
84
|
"dependencies": {
|
|
85
85
|
"color": "^4.2",
|
|
86
86
|
"tailwindcss": "^3.0"
|
|
87
|
+
},
|
|
88
|
+
"peerDependencies": {
|
|
89
|
+
"autoprefixer": "^10.0.2",
|
|
90
|
+
"postcss": "^8.0.9"
|
|
87
91
|
}
|
|
88
92
|
}
|