@graphcommerce/eslint-config-pwa 4.1.3 → 4.1.6

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 +24 -0
  2. package/index.js +7 -1
  3. package/package.json +8 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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
8
+
9
+ * [#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
10
+
11
+ ## 4.1.5
12
+
13
+ ### Patch Changes
14
+
15
+ - [#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.
16
+
17
+ * [#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.
18
+
19
+ - [#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
20
+
21
+ ## 4.1.4
22
+
23
+ ### Patch Changes
24
+
25
+ - [#1378](https://github.com/graphcommerce-org/graphcommerce/pull/1378) [`b610a6e40`](https://github.com/graphcommerce-org/graphcommerce/commit/b610a6e4049e8c9e8b5d2aeff31b8e1bfc24abe5) Thanks [@paales](https://github.com/paales)! - Pin all versions internally so we can’t end up in an unfixable state for the user
26
+
3
27
  ## 4.1.3
4
28
 
5
29
  ### 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,22 +2,21 @@
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.3",
5
+ "version": "4.1.6",
6
6
  "main": "index.js",
7
7
  "dependencies": {
8
- "@graphcommerce/prettier-config-pwa": "^4.0.5",
9
8
  "@graphcommerce/typescript-config-pwa": "^4.0.2",
10
- "@next/eslint-plugin-next": "^12.1.2",
11
- "@typescript-eslint/eslint-plugin": "^5.17.0",
12
- "@typescript-eslint/parser": "^5.17.0",
9
+ "@next/eslint-plugin-next": "^12.1.5",
10
+ "@typescript-eslint/eslint-plugin": "^5.21.0",
11
+ "@typescript-eslint/parser": "^5.21.0",
13
12
  "eslint-config-airbnb": "^19.0.4",
14
- "eslint-config-airbnb-typescript": "^16.1.4",
13
+ "eslint-config-airbnb-typescript": "^17.0.0",
15
14
  "eslint-config-prettier": "^8.5.0",
16
15
  "eslint-import-resolver-webpack": "^0.13.2",
17
- "eslint-plugin-import": "^2.25.4",
16
+ "eslint-plugin-import": "^2.26.0",
18
17
  "eslint-plugin-jsx-a11y": "^6.5.1",
19
18
  "eslint-plugin-react": "^7.29.4",
20
- "eslint-plugin-react-hooks": "^4.4.0"
19
+ "eslint-plugin-react-hooks": "^4.5.0"
21
20
  },
22
21
  "peerDependencies": {
23
22
  "eslint": "^8.8.0"
@@ -25,6 +24,5 @@
25
24
  "sideEffects": false,
26
25
  "engines": {
27
26
  "node": "14.x"
28
- },
29
- "prettier": "@graphcommerce/prettier-config-pwa"
27
+ }
30
28
  }