-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostcss.config.js
More file actions
46 lines (40 loc) · 1.02 KB
/
postcss.config.js
File metadata and controls
46 lines (40 loc) · 1.02 KB
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
const fs = require("fs");
const { homepage, version, author, animateConfig } = JSON.parse(
fs.readFileSync("package.json")
);
const header = `
@charset "UTF-8";
/*!
* HomePage: ${homepage}
* Version ${version}
* Copyright (c) ${new Date().getFullYear()} ${author}
*/
`;
module.exports = (ctx) => {
const prefix = ctx.env === "compat" ? "" : animateConfig.prefix;
const devMessage = `🎉🎉🎉🎉 \npapperanimate.css ${ctx.env} build was compiled sucessfully! \n`;
console.log(devMessage);
return {
map: ctx.options.map,
parser: ctx.options.parser,
plugins: {
"postcss-import": { root: ctx.file.dirname },
"postcss-prefixer": {
prefix,
ignore: [/\[class\*=.*\]/],
},
"postcss-preset-env": {
autoprefixer: {
cascade: false,
},
features: {
"custom-properties": true,
},
},
cssnano: ctx.env === "production" || ctx.env === "compat" ? {} : false,
"postcss-header": {
header,
},
},
};
};