@financial-times/dotcom-build-sass 7.2.5 → 7.2.6

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.
@@ -57,7 +57,8 @@ 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
- ]
60
+ ],
61
+ implementation: require('postcss')
61
62
  }
62
63
  };
63
64
  const cssLoaderOptions = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@financial-times/dotcom-build-sass",
3
- "version": "7.2.5",
3
+ "version": "7.2.6",
4
4
  "description": "",
5
5
  "main": "dist/node/index.js",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -67,7 +67,8 @@ 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
- ]
70
+ ],
71
+ implementation: require('postcss')
71
72
  }
72
73
  }
73
74