-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
34 lines (28 loc) · 1001 Bytes
/
index.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
const postcss = require('postcss');
const cssProps = require('css-properties-values');
const transitionProps = cssProps.map(prop => prop.property);
module.exports = postcss.plugin('postcss-will-change-transition', function () {
return function (css) {
css.walkDecls('transition', function (decl) {
const already = decl.parent.some(elem =>
elem.type === 'decl' && elem.prop === 'will-change'
);
if (already || /all/.test(decl.value)) {
return;
}
const value = decl.value
.split(',')
.map(str => str.trim().split(' '))
.filter(splitted => transitionProps.includes(splitted[0]))
.map(splitted => splitted[0])
.join(', ');
if (!value) {
return;
}
decl.cloneAfter({
prop: 'will-change',
value
});
});
};
});