daisyui 3.1.11 → 3.2.1
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 +2 -2
- package/package.json +3 -7
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
## 📀 Install now!
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
npm i daisyui
|
|
35
|
+
npm i -D daisyui@latest
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Then add daisyUI to your `tailwind.config.js`:
|
|
@@ -59,7 +59,7 @@ See the official site: [ [daisyui.com →](https://daisyui.com/)]
|
|
|
59
59
|
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
60
60
|
| **Premium Sponsors** <br /> Support this project by becoming a premium sponsor. <br /> [[Become a sponsor](https://opencollective.com/daisyui)] | <a href="https://opencollective.com/daisyui" target="_blank"><img src="https://opencollective.com/daisyui/tiers/premium-sponsor.svg?button=false&width=500&avatarHeight=120"></a> |
|
|
61
61
|
| **Backers** <br /> Thank you to all our backers! <br /> [[Become a backer](https://opencollective.com/daisyui)] | <a href="https://opencollective.com/daisyui" target="_blank"><img src="https://opencollective.com/daisyui/backers.svg?button=false&width=500&avatarHeight=46"><img src="https://opencollective.com/daisyui/organizations.svg?button=false&width=500&avatarHeight=46"></a> |
|
|
62
|
-
| **Contributors** <br /> This project exists thanks to all the people who contribute. <br /> [[Contribute](https://github.com/saadeghi/daisyui/blob/master/.github/CONTRIBUTING.md)] | <a href="https://github.com/saadeghi/daisyui/graphs/contributors" target="_blank"><img src="https://contrib.rocks/image?repo=saadeghi/daisyui&columns=14&anon=1&max=300" width="500"></a>
|
|
62
|
+
| **Contributors** <br /> This project exists thanks to all the people who contribute. <br /> [[Contribute](https://github.com/saadeghi/daisyui/blob/master/.github/CONTRIBUTING.md)] | <a href="https://github.com/saadeghi/daisyui/graphs/contributors" target="_blank"><img src="https://contrib.rocks/image?repo=saadeghi/daisyui&columns=14&anon=1&max=300" width="500"></a> |
|
|
63
63
|
|
|
64
64
|
Tweet about daisyUI: [![][tweet]][tweet-url]
|
|
65
65
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daisyui",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "daisyUI - Tailwind CSS Components",
|
|
5
5
|
"author": "Pouya Saadeghi",
|
|
6
6
|
"license": "MIT",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"prettier": "./src/prettier.config.js",
|
|
58
58
|
"scripts": {
|
|
59
|
-
"init": "npm install && npm run build && cd src/docs && npm run get-files && npm install
|
|
59
|
+
"init": "npm install && npm run build && cd src/docs && npm run get-files && npm install && cd src/experiments/playground && npm install",
|
|
60
60
|
"prettier": "prettier --write . --ignore-path ./src/.prettierignore",
|
|
61
61
|
"prebase": "postcss --config src/base src/base/*.css --base src --dir dist",
|
|
62
62
|
"base": "cat dist/base/*.css > dist/base.css",
|
|
@@ -91,9 +91,7 @@
|
|
|
91
91
|
"release:major": "rm -f package-lock.json && standard-version --release-as major"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@vitest/ui": "^0.31.1",
|
|
95
94
|
"autoprefixer": "^10",
|
|
96
|
-
"c8": "^7.14.0",
|
|
97
95
|
"postcss-cli": "10.1.0",
|
|
98
96
|
"postcss-import": "15.1.0",
|
|
99
97
|
"prejss-cli": "0.3.3",
|
|
@@ -106,10 +104,8 @@
|
|
|
106
104
|
"dependencies": {
|
|
107
105
|
"colord": "^2.9",
|
|
108
106
|
"css-selector-tokenizer": "^0.8",
|
|
107
|
+
"postcss": "^8",
|
|
109
108
|
"postcss-js": "^4",
|
|
110
109
|
"tailwindcss": "^3"
|
|
111
|
-
},
|
|
112
|
-
"peerDependencies": {
|
|
113
|
-
"postcss": "^8"
|
|
114
110
|
}
|
|
115
111
|
}
|