@financial-times/dotcom-build-sass 7.2.6 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/index.js +3 -3
- package/package.json +1 -1
- package/src/index.ts +3 -3
package/dist/node/index.js
CHANGED
@@ -57,9 +57,9 @@ class PageKitSassPlugin {
|
|
57
57
|
// de-duplicate rule-sets which is useful if $o-silent-mode is toggled.
|
58
58
|
// https://github.com/cssnano/cssnano
|
59
59
|
require('cssnano')(cssnanoOptions)
|
60
|
-
]
|
61
|
-
|
62
|
-
|
60
|
+
]
|
61
|
+
},
|
62
|
+
implementation: require('postcss')
|
63
63
|
};
|
64
64
|
const cssLoaderOptions = {
|
65
65
|
// Allow css-loader to resolve @import because the sass-loader
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
@@ -67,9 +67,9 @@ export class PageKitSassPlugin {
|
|
67
67
|
// de-duplicate rule-sets which is useful if $o-silent-mode is toggled.
|
68
68
|
// https://github.com/cssnano/cssnano
|
69
69
|
require('cssnano')(cssnanoOptions)
|
70
|
-
]
|
71
|
-
|
72
|
-
|
70
|
+
]
|
71
|
+
},
|
72
|
+
implementation: require('postcss')
|
73
73
|
}
|
74
74
|
|
75
75
|
const cssLoaderOptions = {
|