@ucdavis/gunrock-tailwind 1.1.0 → 1.3.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/README.md +12 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,5 +2,15 @@ tailwind config file for UC D projects
|
|
|
2
2
|
|
|
3
3
|
npm install @ucdavis/gunrock-tailwind
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
// tailwind.config.js
|
|
6
|
+
const preset = require('@ucdavis/gunrock-tailwind');
|
|
7
|
+
|
|
8
|
+
module.exports = {
|
|
9
|
+
...preset,
|
|
10
|
+
content: ['./src/**/*.{js,ts,jsx,tsx,html}'],
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
global css
|
|
14
|
+
@tailwind base;
|
|
15
|
+
@tailwind components;
|
|
16
|
+
@tailwind utilities;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ucdavis/gunrock-tailwind",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Tailwind + DaisyUI preset for UC Davis branding",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"theme"
|
|
16
16
|
],
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"tailwindcss": "^
|
|
19
|
-
"daisyui": "^
|
|
18
|
+
"tailwindcss": "^4.0.0",
|
|
19
|
+
"daisyui": "^5.0.0"
|
|
20
20
|
},
|
|
21
21
|
"license": "MIT"
|
|
22
22
|
}
|