File tree 3 files changed +12
-24
lines changed
3 files changed +12
-24
lines changed Original file line number Diff line number Diff line change 8
8
"type" : " git" ,
9
9
"url" : " https://github.com/jamstack/jamstack.org"
10
10
},
11
+ "engines" : {
12
+ "node" : " >=12"
13
+ },
11
14
"scripts" : {
12
15
"build" : " npm-run-all build:html build:css" ,
13
16
"build:html" : " eleventy" ,
21
24
"dependencies" : {
22
25
"@11ty/eleventy" : " ^0.11.1" ,
23
26
"@11ty/eleventy-cache-assets" : " ^2.0.3" ,
24
- "@fullhuman/postcss-purgecss" : " ^1.3.0" ,
25
- "autoprefixer" : " ^9.7.6" ,
27
+ "autoprefixer" : " ^10.0.4" ,
26
28
"cssnano" : " ^4.1.10" ,
27
29
"dotenv" : " ^8.2.0" ,
28
30
"fast-glob" : " ^3.2.4" ,
29
31
"gray-matter" : " ^4.0.2" ,
30
32
"js-yaml" : " ^3.14.0" ,
31
33
"lodash" : " ^4.17.20" ,
32
34
"luxon" : " ^1.25.0" ,
33
- "markdown-it" : " ^11 .0.1 " ,
34
- "netlify-plugin-minify-html" : " ^0.2.2 " ,
35
+ "markdown-it" : " ^12 .0.2 " ,
36
+ "netlify-plugin-minify-html" : " ^0.3.0 " ,
35
37
"node-fetch" : " ^2.6.1" ,
36
38
"npm-run-all" : " ^4.1.5" ,
37
- "postcss-cli" : " ^6.1.3" ,
38
- "postcss-import" : " ^12.0.1" ,
39
- "tailwindcss" : " ^1.8.10"
39
+ "postcss" : " ^8.1.10" ,
40
+ "postcss-cli" : " ^8.3.0" ,
41
+ "postcss-import" : " ^13.0.0" ,
42
+ "tailwindcss" : " ^2.0.1"
40
43
},
41
44
"devDependencies" : {
42
45
"live-server" : " ^1.2.1"
Original file line number Diff line number Diff line change 1
- // const purgecss = require('@fullhuman/postcss-purgecss')({
2
-
3
- // // Specify the paths to all of the template files in the project
4
- // content: [
5
- // './src/site/**/*.njk',
6
- // './src/site/**/*.md'
7
- // ],
8
-
9
- // // Include any special characters
10
- // defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || []
11
- // })
12
-
13
-
14
-
15
1
module . exports = {
16
2
plugins : [
3
+ require ( "postcss-import" ) ,
17
4
require ( 'tailwindcss' ) ,
18
5
require ( 'autoprefixer' ) ,
19
- require ( "postcss-import" ) ,
20
- // ...process.env.NODE_ENV === 'production' ? [purgecss, require('cssnano')] : []
21
6
]
22
7
} ;
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ a.cta:focus {
88
88
footer p a {
89
89
@apply border-b;
90
90
@apply border-blue-100;
91
- @apply whitespace-no-wrap ;
91
+ @apply whitespace-nowrap ;
92
92
}
93
93
footer p a : hover ,
94
94
footer p a : focus {
You can’t perform that action at this time.
0 commit comments