@graphcommerce/docs 6.0.0-canary.22 → 6.0.0-canary.24
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 +8 -0
- package/framework/config.md +4 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 6.0.0-canary.24
|
|
4
|
+
|
|
5
|
+
## 6.0.0-canary.23
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- [#1810](https://github.com/graphcommerce-org/graphcommerce/pull/1810) [`543c5d5b2`](https://github.com/graphcommerce-org/graphcommerce/commit/543c5d5b2b6f29c1f6a0a405524d4cc86f399596) - Added `limitSsg: Boolean` configuration option to limit the getStaticPaths generation during build. This is useful to make quick deployments on preview environments. ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
3
11
|
## 6.0.0-canary.22
|
|
4
12
|
|
|
5
13
|
## 6.0.0-canary.21
|
package/framework/config.md
CHANGED
|
@@ -72,12 +72,6 @@ Enables some demo specific code that is probably not useful for a project:
|
|
|
72
72
|
- Adds "dominant_color" attribute swatches to the product list items.
|
|
73
73
|
- Creates a big list items in the product list.
|
|
74
74
|
|
|
75
|
-
### `deployEnvironment: DeployEnvironment`
|
|
76
|
-
|
|
77
|
-
Environment GraphCommerce is deployed to.
|
|
78
|
-
|
|
79
|
-
Not to be confused with NODE_ENV: which will always be 'production' when running `next build`.
|
|
80
|
-
|
|
81
75
|
### `googleAnalyticsId: String`
|
|
82
76
|
|
|
83
77
|
See https://support.google.com/analytics/answer/9539598?hl=en
|
|
@@ -98,6 +92,10 @@ The Google Tagmanager ID to be used on the site.
|
|
|
98
92
|
|
|
99
93
|
This value is required even if you are configuring different values for each locale.
|
|
100
94
|
|
|
95
|
+
### `limitSsg: Boolean`
|
|
96
|
+
|
|
97
|
+
Limit the static generation of SSG when building
|
|
98
|
+
|
|
101
99
|
### `previewSecret: String`
|
|
102
100
|
|
|
103
101
|
To enable next.js' preview mode, configure the secret you'd like to use.
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "6.0.0-canary.
|
|
5
|
+
"version": "6.0.0-canary.24",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.24"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|