Skip to content

Commit cd63948

Browse files
committed
Undo accidental changes to CDN build process
1 parent 2ae6ee6 commit cd63948

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

src/build.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ function buildDistFile(filename) {
1010
fs.readFile(`./${filename}.css`, (err, css) => {
1111
if (err) throw err
1212

13-
// return postcss([tailwind(), require('autoprefixer')])
14-
return postcss([tailwind()])
13+
return postcss([tailwind(), require('autoprefixer')])
1514
.process(css, {
1615
from: `./${filename}.css`,
1716
to: `./dist/${filename}.css`,

tailwind.css

-7
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,3 @@
33
@tailwind components;
44

55
@tailwind utilities;
6-
7-
@responsive {
8-
.example {
9-
@apply .font-bold;
10-
color: theme('colors.red.500');
11-
}
12-
}

0 commit comments

Comments
 (0)