We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SeparateKeyframes
1 parent ac92ba9 commit dab4043Copy full SHA for dab4043
packages/optimizer/lib/transformers/SeparateKeyframes.js
@@ -43,8 +43,12 @@ class SeparateKeyframes {
43
this.log_ = config.log.tag('SeparateKeyframes');
44
this.minify = config.minify !== false;
45
this.enabled = !!config.separateKeyframes;
46
+
47
+ if (!this.enabled) {
48
+ return;
49
+ }
50
51
if (
- this.enabled &&
52
(!isDependencyInstalled('postcss') ||
53
!isDependencyInstalled('postcss-safe-parser') ||
54
!isDependencyInstalled('cssnano-simple'))
0 commit comments