-
Notifications
You must be signed in to change notification settings - Fork 157
/
postcss.config.js
55 lines (53 loc) · 2.3 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
// const path = require("path");
// module.exports = {
// plugins: [
// require("postcss-import")({
// filter: (p) => {
// const ok = p && p.indexOf("mixin") >= 0;
// console.log("POSTCSS IMPORT? =====> ", p, ok);
// return ok;
// // console.log("POSTCSS IMPORT (skip) =====> ", p);
// // return false;
// },
// }),
// require("postcss-mixins")({
// // mixinsFiles: path.join(__dirname, "src/renderer/assets/styles", "**/*(mixin|mixins).css"),
// }),
// require("postcss-nesting")({
// // mixinsFiles: path.join(__dirname, "src/renderer/assets/styles", "**/*(mixin|mixins).css"),
// }),
// // require("postcss-preset-env")({
// // stage: 2,
// // browsers: "last 2 Chrome versions",
// // // autoprefixer: false,
// // features: {
// // "nesting-rules": true,
// // },
// // // importFrom: [
// // // "src/renderer/assets/styles/partials/variables.css",
// // // "src/renderer/assets/styles/variable.css",
// // // ],
// // }),
// // require("postcss-cssnext")({
// // // CSS compatible with the last 4 chrome versions
// // browsers: ["last 4 Chrome versions"],
// // // features: {
// // // customProperties: {
// // // variables: {
// // // "main-color": "#4d4d4d",
// // // "secondary-color": "white",
// // // "disabled-color": "#767676",
// // // "color-primary": "#4d4d4d",
// // // "color-secondary": "#fff",
// // // "color-tertiary": "#67a3e0",
// // // "color-disabled": "#b7b7b7",
// // // "color-light-grey": "#f1f1f1",
// // // "color-medium-grey": "#e5e5e5",
// // // "color-accent": "rgb(0, 188, 212)",
// // // "color-accent-contrast": "#fff",
// // // },
// // // },
// // // },
// // }),
// ],
// };