Undo accidental changes to CDN build process

This commit is contained in:
Adam Wathan 2019-12-23 19:19:13 -05:00
parent 2ae6ee6c12
commit cd63948fa2
2 changed files with 1 additions and 9 deletions

View File

@ -10,8 +10,7 @@ function buildDistFile(filename) {
fs.readFile(`./${filename}.css`, (err, css) => {
if (err) throw err
// return postcss([tailwind(), require('autoprefixer')])
return postcss([tailwind()])
return postcss([tailwind(), require('autoprefixer')])
.process(css, {
from: `./${filename}.css`,
to: `./dist/${filename}.css`,

View File

@ -3,10 +3,3 @@
@tailwind components;
@tailwind utilities;
@responsive {
.example {
@apply .font-bold;
color: theme('colors.red.500');
}
}