@elliemae/pui-cli 9.0.0-next.34 → 9.0.0-next.35

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.
@@ -33,11 +33,10 @@ const stylelintConfig = {
33
33
  "/node_modules/**/*",
34
34
  "/vendor/**/*"
35
35
  ],
36
- customSyntax: "@stylelint/postcss-css-in-js",
37
- // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
38
36
  extends: [
39
37
  "stylelint-config-recommended",
40
38
  "stylelint-config-styled-components"
41
39
  ],
40
+ customSyntax: "postcss-styled-syntax",
42
41
  rules: { "selector-type-no-unknown": null, "function-no-unknown": null }
43
42
  };
@@ -10,12 +10,11 @@ const stylelintConfig = {
10
10
  "/node_modules/**/*",
11
11
  "/vendor/**/*"
12
12
  ],
13
- customSyntax: "@stylelint/postcss-css-in-js",
14
- // customSyntax: "postcss-styled-components", // '@stylelint/postcss-css-in-js' is deprecated, this may be a replacement?
15
13
  extends: [
16
14
  "stylelint-config-recommended",
17
15
  "stylelint-config-styled-components"
18
16
  ],
17
+ customSyntax: "postcss-styled-syntax",
19
18
  rules: { "selector-type-no-unknown": null, "function-no-unknown": null }
20
19
  };
21
20
  export {
@@ -1,8 +1,8 @@
1
1
  export namespace stylelintConfig {
2
2
  export let ignoreFiles: string[];
3
- export let customSyntax: string;
4
3
  let _extends: string[];
5
4
  export { _extends as extends };
5
+ export let customSyntax: string;
6
6
  export let rules: {
7
7
  'selector-type-no-unknown': null;
8
8
  'function-no-unknown': null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "9.0.0-next.34",
3
+ "version": "9.0.0-next.35",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -259,6 +259,7 @@
259
259
  "postcss-loader": "~8.1.0",
260
260
  "postcss-markdown": "~1.2.0",
261
261
  "postcss-preset-env": "~9.3.0",
262
+ "postcss-styled-syntax": "0.6.4",
262
263
  "postcss-syntax": "~0.36.2",
263
264
  "prettier": "~3.2.5",
264
265
  "prisma": "~5.9.1",
@@ -279,6 +280,7 @@
279
280
  "storybook-react-router": "~1.0.8",
280
281
  "style-loader": "~3.3.4",
281
282
  "stylelint": "~16.2.1",
283
+ "stylelint-config-standard": "~36.0.0",
282
284
  "stylelint-config-recommended": "~14.0.0",
283
285
  "stylelint-config-styled-components": "~0.1.1",
284
286
  "supertest": "~6.3.4",