@graphcommerce/eslint-config-pwa 4.0.6 → 4.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1330](https://github.com/graphcommerce-org/graphcommerce/pull/1330) [`872f1c2d0`](https://github.com/graphcommerce-org/graphcommerce/commit/872f1c2d028ddb62e1b7d9c261a6d68379842d86) Thanks [@paales](https://github.com/paales)! - Add rule: '@mui/system' import is restricted from being used. Please use `@mui/material'` instead.
8
+
3
9
  ## 4.0.6
4
10
 
5
11
  ### Patch Changes
package/index.js CHANGED
@@ -110,6 +110,10 @@ module.exports = {
110
110
  name: 'next/image',
111
111
  message: "Please use `import { Image } from '@graphcommerce/image'` instead.",
112
112
  },
113
+ {
114
+ name: '@mui/system',
115
+ message: "Please use `@mui/material'` instead.",
116
+ },
113
117
  ],
114
118
  },
115
119
  ],
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/eslint-config-pwa",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.0.6",
5
+ "version": "4.1.0",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
8
  "@graphcommerce/prettier-config-pwa": "^4.0.4",