@graphcommerce/eslint-config-pwa 8.1.0-canary.45 → 8.1.0-canary.46
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 +7 -0
- package/index.js +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 8.1.0-canary.46
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2314](https://github.com/graphcommerce-org/graphcommerce/pull/2314) [`fe8fce7`](https://github.com/graphcommerce-org/graphcommerce/commit/fe8fce7f5a82e227ed4a1992415af73fa7d0bb79) - Importing \*.interceptor is NOT allowed
|
|
8
|
+
([@paales](https://github.com/paales))
|
|
9
|
+
|
|
3
10
|
## 8.1.0-canary.45
|
|
4
11
|
|
|
5
12
|
## 8.1.0-canary.44
|
package/index.js
CHANGED
|
@@ -147,6 +147,12 @@ module.exports = {
|
|
|
147
147
|
message: 'Import from @mui/material instead of @emotion/react.',
|
|
148
148
|
},
|
|
149
149
|
],
|
|
150
|
+
patterns: [
|
|
151
|
+
{
|
|
152
|
+
group: ['*.interceptor'],
|
|
153
|
+
message: 'Importing *.interceptor is NOT allowed',
|
|
154
|
+
},
|
|
155
|
+
],
|
|
150
156
|
},
|
|
151
157
|
],
|
|
152
158
|
},
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/eslint-config-pwa",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "8.1.0-canary.
|
|
5
|
+
"version": "8.1.0-canary.46",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@graphcommerce/typescript-config-pwa": "8.1.0-canary.
|
|
8
|
+
"@graphcommerce/typescript-config-pwa": "8.1.0-canary.46",
|
|
9
9
|
"@next/eslint-plugin-next": "14.1.0",
|
|
10
10
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
11
11
|
"@typescript-eslint/parser": "^6.19.0",
|