@digest/postcss 3.5.1 → 3.6.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@digest/postcss",
3
3
  "title": "PostCSS Digest",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "3.5.1",
5
+ "version": "3.6.0",
6
6
  "description": "Digested PostCSS configurations",
7
7
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
8
  "contributors": [
@@ -32,18 +32,18 @@
32
32
  "clean": "rimraf node_modules package-lock.json npm-debug.log"
33
33
  },
34
34
  "dependencies": {
35
- "@digest/scripts": "^3.5.1",
35
+ "@digest/scripts": "^3.6.0",
36
36
  "postcss": "^8.4.16",
37
37
  "postcss-each": "^1.1.0",
38
38
  "postcss-import": "^14.1.0",
39
- "postcss-mixins": "^9.0.3",
39
+ "postcss-mixins": "^9.0.4",
40
40
  "postcss-normalize": "^10.0.1",
41
- "postcss-preset-env": "^7.7.2",
41
+ "postcss-preset-env": "^7.8.1",
42
42
  "postcss-reporter": "^7.0.5"
43
43
  },
44
44
  "keywords": [
45
45
  "digest",
46
46
  "postcss"
47
47
  ],
48
- "gitHead": "ffae282c11332597e89a81ac88daa6af57508df2"
48
+ "gitHead": "6dbabfc3844f33f4b2864fd4273a2b630504830f"
49
49
  }
@@ -19,7 +19,8 @@ program. If not, see <http://www.gnu.org/licenses/>.
19
19
  eslint-disable
20
20
  canonical/filename-match-regex,
21
21
  @typescript-eslint/no-require-imports,
22
- @typescript-eslint/no-var-requires
22
+ @typescript-eslint/no-var-requires,
23
+ unicorn/prefer-module
23
24
  */
24
25
 
25
26
  const config = require('@digest/scripts');
@@ -33,6 +34,7 @@ const postcssReporter = require('postcss-reporter');
33
34
  let stylelint;
34
35
 
35
36
  if (config.stylelintConfig) {
37
+ // eslint-disable-next-line node/no-extraneous-require
36
38
  stylelint = require('stylelint');
37
39
  }
38
40