@graphcommerce/next-config 7.0.0 → 7.0.1-canary.2
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 +16 -0
- package/package.json +8 -9
- package/src/generated/config.ts +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 7.0.1-canary.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2043](https://github.com/graphcommerce-org/graphcommerce/pull/2043) [`b5584f689`](https://github.com/graphcommerce-org/graphcommerce/commit/b5584f689d22a3d2c043ecf5eb4ef02920fc5bdd) - Support for node 20 ([@paales](https://github.com/paales))
|
|
8
|
+
|
|
9
|
+
## 7.0.1-canary.1
|
|
10
|
+
|
|
11
|
+
## 7.0.1-canary.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`ca9ce846c`](https://github.com/graphcommerce-org/graphcommerce/commit/ca9ce846cb24a2ab0e365df6e60a962187151030) - Solved an issue where any dynamic route like product pages or search pages would give a 404 during development. ([@paales](https://github.com/paales))
|
|
16
|
+
|
|
17
|
+
- [#2047](https://github.com/graphcommerce-org/graphcommerce/pull/2047) [`136580b39`](https://github.com/graphcommerce-org/graphcommerce/commit/136580b39e3cffdd07e3fa087e049bd532c3e8f1) - Updated all dependencies to the latest version where possible. ([@paales](https://github.com/paales))
|
|
18
|
+
|
|
3
19
|
## 7.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/next-config",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "7.0.
|
|
5
|
+
"version": "7.0.1-canary.2",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "src/index.ts",
|
|
@@ -13,22 +13,21 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@graphql-mesh/cli": "latest",
|
|
16
|
-
"@lingui/loader": "4.4.
|
|
17
|
-
"@lingui/swc-plugin": "4.0.
|
|
18
|
-
"@swc/core": "1.3.
|
|
16
|
+
"@lingui/loader": "4.4.2",
|
|
17
|
+
"@lingui/swc-plugin": "4.0.4",
|
|
18
|
+
"@swc/core": "1.3.82",
|
|
19
19
|
"circular-dependency-plugin": "^5.2.2",
|
|
20
20
|
"inspectpack": "^4.7.1",
|
|
21
21
|
"js-yaml-loader": "^1.2.2",
|
|
22
22
|
"lodash": "^4.17.21",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
23
|
+
"workbox-build": "^7.0.0",
|
|
24
|
+
"znv": "^0.4.0",
|
|
25
|
+
"zod": "^3.21.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/circular-dependency-plugin": "^5.0.5",
|
|
29
|
-
"@types/cli-table": "^0.3.1",
|
|
30
29
|
"@types/lodash": "^4.14.191",
|
|
31
|
-
"typescript": "5.
|
|
30
|
+
"typescript": "5.2.2"
|
|
32
31
|
},
|
|
33
32
|
"peerDependencies": {
|
|
34
33
|
"next": "^13.2.0",
|
package/src/generated/config.ts
CHANGED
|
@@ -256,11 +256,7 @@ export type GraphCommerceConfig = {
|
|
|
256
256
|
* SIDEBAR: Will be rendered as a sidebar on desktop and horizontal chips on mobile
|
|
257
257
|
*/
|
|
258
258
|
productFiltersLayout?: InputMaybe<ProductFiltersLayout>;
|
|
259
|
-
/**
|
|
260
|
-
* Product filters with better UI for mobile and desktop.
|
|
261
|
-
*
|
|
262
|
-
* @experimental This is an experimental feature and may change in the future.
|
|
263
|
-
*/
|
|
259
|
+
/** Product filters with better UI for mobile and desktop. */
|
|
264
260
|
productFiltersPro?: InputMaybe<Scalars['Boolean']['input']>;
|
|
265
261
|
/**
|
|
266
262
|
* By default we route products to /p/[url] but you can change this to /product/[url] if you wish.
|