-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostcss.config.js
executable file
·62 lines (54 loc) · 1.72 KB
/
postcss.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const _ = require('lodash')
const path = require('path')
const tailwindConfig = require('./tailwind.config.js')
const importOptions = {
resolve: id => id.replace(/^@src/, path.resolve(__dirname, 'theme/src'))
}
const purgecssOptions = {
content: ['./theme/src/**/*.vue', './theme/templates/**/*.twig'],
whitelistPatterns: [/flickity-.*/, /js-.*/, /.*-orange/, /.*-gray/, /.*-pink/, /.*-purple/, /.*-green/, /strong/, /b/, /h1/, /h2/, /h3/],
whitelistPatternsChildren: [/flickity-.*/],
defaultExtractor: (content) => content.match(/[A-Za-z0-9-_:/]+/g) || [],
}
const functionsOptions = {
functions: {
themeToBase: function(path) {
let value = _.get(tailwindConfig.theme, _.trim(path, `'"`))
if (value.includes('px')) {
return parseFloat(value.slice(0, -2))
}
if (value.includes('rem')) {
return parseFloat(value.slice(0, -3)) * 16
}
return 16
},
getCalcContent: function(value) {
if (value.slice(0, 4) === 'calc') {
return value.slice(4)
} else {
return value
}
},
},
}
module.exports = {
ident: 'postcss',
syntax: 'postcss-scss',
map: {
inline: true,
},
plugins: [
require('postcss-import')(importOptions),
require('postcss-for'),
require('postcss-mixins'),
require('postcss-nested'),
require('postcss-easings'),
require('postcss-advanced-variables'),
require('tailwindcss')('./tailwind.config.js'),
require('postcss-object-fit-images'),
require('postcss-functions')(functionsOptions),
require('autoprefixer'),
require("postcss-calc"),
...(process.env.NODE_ENV === 'production' ? [require('@fullhuman/postcss-purgecss')(purgecssOptions), require('cssnano')] : []),
],
}