@graphcommerce/eslint-config-pwa 4.1.4 → 4.1.7

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/index.js +7 -1
  3. package/package.json +9 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1451](https://github.com/graphcommerce-org/graphcommerce/pull/1451) [`50188e378`](https://github.com/graphcommerce-org/graphcommerce/commit/50188e378b4c77561ebc600958ea11cd114fa61a) Thanks [@paales](https://github.com/paales)! - Loosen node requirement
8
+
9
+ - Updated dependencies [[`50188e378`](https://github.com/graphcommerce-org/graphcommerce/commit/50188e378b4c77561ebc600958ea11cd114fa61a)]:
10
+ - @graphcommerce/typescript-config-pwa@4.0.3
11
+
12
+ ## 4.1.6
13
+
14
+ ### Patch Changes
15
+
16
+ - [#1394](https://github.com/graphcommerce-org/graphcommerce/pull/1394) [`b6b8bb5b3`](https://github.com/graphcommerce-org/graphcommerce/commit/b6b8bb5b31b0891ea24733de34a3bd5c0a9604e4) Thanks [@paales](https://github.com/paales)! - Add jest to scope for .spec.ts(x) files
17
+
18
+ * [#1426](https://github.com/graphcommerce-org/graphcommerce/pull/1426) [`100f4c38c`](https://github.com/graphcommerce-org/graphcommerce/commit/100f4c38c8fcda4bc6e0425e38028b550b60adc2) Thanks [@paales](https://github.com/paales)! - Upgrade packages
19
+
20
+ ## 4.1.5
21
+
22
+ ### Patch Changes
23
+
24
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Now using [@graphql-yoga](https://github.com/dotansimha/graphql-yoga) for GraphQL which has full support for [envelop](https://www.envelop.dev/) plugins.
25
+
26
+ * [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`fb277d8e1`](https://github.com/graphcommerce-org/graphcommerce/commit/fb277d8e1e3612c5e9cf890a30d19cfd1ff70542) Thanks [@paales](https://github.com/paales)! - Added a new @graphcommerce/cli package to generate the mesh so it can be generated _inside_ the @graphcommerce/graphql-mesh package to allow for better future extensibility.
27
+
28
+ - [#1399](https://github.com/graphcommerce-org/graphcommerce/pull/1399) [`da0ae7d02`](https://github.com/graphcommerce-org/graphcommerce/commit/da0ae7d0236e4908ba0bf0fa16656be516e841d4) Thanks [@paales](https://github.com/paales)! - Updated dependencies
29
+
3
30
  ## 4.1.4
4
31
 
5
32
  ### Patch Changes
package/index.js CHANGED
@@ -64,7 +64,7 @@ module.exports = {
64
64
  'import/no-extraneous-dependencies': [
65
65
  'error',
66
66
  {
67
- devDependencies: ['next.config.js', '**/test/**', '**/*.d.ts'],
67
+ devDependencies: ['next.config.js', '**/test/**', '**/*.d.ts', '**/*.spec.ts'],
68
68
  },
69
69
  ],
70
70
  'import/order': ['warn', { alphabetize: { order: 'asc' } }],
@@ -129,5 +129,11 @@ module.exports = {
129
129
  '@typescript-eslint/camelcase': 'off',
130
130
  },
131
131
  },
132
+ {
133
+ files: ['**/*.spec.ts', '**/*.spec.tsx'],
134
+ env: {
135
+ jest: true,
136
+ },
137
+ },
132
138
  ],
133
139
  }
package/package.json CHANGED
@@ -2,27 +2,24 @@
2
2
  "name": "@graphcommerce/eslint-config-pwa",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "4.1.4",
5
+ "version": "4.1.7",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@graphcommerce/typescript-config-pwa": "^4.0.2",
9
- "@next/eslint-plugin-next": "^12.1.2",
10
- "@typescript-eslint/eslint-plugin": "^5.17.0",
11
- "@typescript-eslint/parser": "^5.17.0",
8
+ "@graphcommerce/typescript-config-pwa": "^4.0.3",
9
+ "@next/eslint-plugin-next": "^12.1.5",
10
+ "@typescript-eslint/eslint-plugin": "^5.21.0",
11
+ "@typescript-eslint/parser": "^5.21.0",
12
12
  "eslint-config-airbnb": "^19.0.4",
13
- "eslint-config-airbnb-typescript": "^16.1.4",
13
+ "eslint-config-airbnb-typescript": "^17.0.0",
14
14
  "eslint-config-prettier": "^8.5.0",
15
15
  "eslint-import-resolver-webpack": "^0.13.2",
16
- "eslint-plugin-import": "^2.25.4",
16
+ "eslint-plugin-import": "^2.26.0",
17
17
  "eslint-plugin-jsx-a11y": "^6.5.1",
18
18
  "eslint-plugin-react": "^7.29.4",
19
- "eslint-plugin-react-hooks": "^4.4.0"
19
+ "eslint-plugin-react-hooks": "^4.5.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "eslint": "^8.8.0"
23
23
  },
24
- "sideEffects": false,
25
- "engines": {
26
- "node": "14.x"
27
- }
24
+ "sideEffects": false
28
25
  }