Skip to content

Commit

Permalink
fix: saadeghi#31, improve build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
saadeghi authored and ImgBotApp committed Jun 5, 2023
1 parent d0db711 commit 407ed67
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 71 deletions.
7 changes: 0 additions & 7 deletions src/full/postcss.config.js

This file was deleted.

64 changes: 0 additions & 64 deletions src/full/tailwind.config.js

This file was deleted.

20 changes: 20 additions & 0 deletions src/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
module.exports = {
plugins: [
require('postcss-import'),
require('tailwindcss')('./src/tailwind.config.js'),
require('postcss-nested')({
"bubble": [
"screen"
]
}),
require('autoprefixer'),
require('cssnano')({
"preset": [
"default",
{
"mergeRules": false
}
]
}),
]
}
13 changes: 13 additions & 0 deletions src/utilities/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
plugins: [
require('autoprefixer'),
require('cssnano')({
"preset": [
"default",
{
"mergeRules": false
}
]
}),
]
}

0 comments on commit 407ed67

Please sign in to comment.