@graphcommerce/next-config 10.1.0-canary.19 → 10.1.0-canary.20
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
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 10.1.0-canary.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2632](https://github.com/graphcommerce-org/graphcommerce/pull/2632) [`c25106b`](https://github.com/graphcommerce-org/graphcommerce/commit/c25106bf212974bbfafafabbc650e368576f07d0) - Regenerate the `mergeEnvIntoConfig` snapshot so `yarn test` passes on canary. The test input already feeds `GC_DEMO_MODE` and `GC_STOREFRONT_<i>_HYGRAPH_LOCALES_0` into the env-schema parser, but the snapshot it was compared against still reflected the pre-`demoMode` / pre-flattened-`hygraphLocales` schema, so every CI run since those config fields were added has been failing the `test` job on every PR with a snapshot mismatch unrelated to the PR's own changes. ([@paales](https://github.com/paales))
|
|
8
|
+
|
|
3
9
|
## 10.1.0-canary.19
|
|
4
10
|
|
|
5
11
|
## 10.1.0-canary.18
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`parses an env config object 1`] = `
|
|
4
4
|
{
|
|
5
|
+
"GC_DEMO_MODE": true,
|
|
5
6
|
"GC_STOREFRONT": [
|
|
6
7
|
{
|
|
7
8
|
"defaultLocale": true,
|
|
@@ -13,8 +14,10 @@ exports[`parses an env config object 1`] = `
|
|
|
13
14
|
},
|
|
14
15
|
],
|
|
15
16
|
"GC_STOREFRONT_0_DEFAULT_LOCALE": true,
|
|
17
|
+
"GC_STOREFRONT_0_HYGRAPH_LOCALES_0": "en",
|
|
16
18
|
"GC_STOREFRONT_0_LOCALE": "en",
|
|
17
19
|
"GC_STOREFRONT_0_MAGENTO_STORE_CODE": "en_us",
|
|
20
|
+
"GC_STOREFRONT_1_HYGRAPH_LOCALES_0": "de",
|
|
18
21
|
"GC_STOREFRONT_1_LOCALE": "de",
|
|
19
22
|
"GC_STOREFRONT_1_MAGENTO_STORE_CODE": "de_de",
|
|
20
23
|
}
|
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": "10.1.0-canary.
|
|
5
|
+
"version": "10.1.0-canary.20",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"@apollo/client": "*",
|
|
66
|
-
"@graphcommerce/prettier-config-pwa": "^10.1.0-canary.
|
|
66
|
+
"@graphcommerce/prettier-config-pwa": "^10.1.0-canary.20",
|
|
67
67
|
"@lingui/loader": "*",
|
|
68
68
|
"@lingui/macro": "*",
|
|
69
69
|
"@lingui/react": "*",
|