File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 9
9
"devDependencies" : {
10
10
"@11ty/eleventy" : " ^0.11.0" ,
11
11
"@11ty/eleventy-plugin-syntaxhighlight" : " ^3.0.1" ,
12
- "@tailwindcss/typography" : " ^0.2.0 " ,
12
+ "@tailwindcss/typography" : " ^0.3.1 " ,
13
13
"alpinejs" : " ^2.6.0" ,
14
14
"cross-env" : " ^7.0.2" ,
15
+ "cssnano" : " ^4.1.10" ,
15
16
"html-minifier" : " ^4.0.0" ,
16
17
"js-yaml" : " ^3.14.0" ,
17
18
"luxon" : " ^1.25.0" ,
18
19
"npm-run-all" : " ^4.1.5" ,
19
- "postcss-clean" : " ^1.1.0" ,
20
- "postcss-cli" : " ^7.1.1" ,
20
+ "postcss-cli" : " ^8.3.1" ,
21
21
"prismjs" : " ^1.21.0" ,
22
- "tailwindcss" : " ^1.7.2"
22
+ "tailwindcss" : " ^2.0.2"
23
+ },
24
+ "dependencies" : {
25
+ "autoprefixer" : " ^10.1.0" ,
26
+ "postcss" : " ^8.2.1"
23
27
}
24
28
}
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ module.exports = {
3
3
require ( `tailwindcss` ) ( `./tailwind.config.js` ) ,
4
4
require ( `autoprefixer` ) ,
5
5
...( process . env . NODE_ENV === "production"
6
- ? [ require ( `postcss-clean` ) ]
6
+ ? [
7
+ require ( `cssnano` ) ( {
8
+ preset : "default" ,
9
+ } ) ,
10
+ ]
7
11
: [ ] ) ,
8
12
] ,
9
13
} ;
Original file line number Diff line number Diff line change @@ -16,8 +16,4 @@ module.exports = {
16
16
} ,
17
17
variants : { } ,
18
18
plugins : [ require ( "@tailwindcss/typography" ) ] ,
19
- experimental : "all" ,
20
- future : {
21
- purgeLayersByDefault : true ,
22
- } ,
23
19
} ;
You can’t perform that action at this time.
0 commit comments