@graphcommerce/next-config 6.2.0-canary.83 → 6.2.0-canary.85

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,13 @@
1
1
  # Change Log
2
2
 
3
+ ## 6.2.0-canary.85
4
+
5
+ ## 6.2.0-canary.84
6
+
7
+ ### Patch Changes
8
+
9
+ - [#2024](https://github.com/graphcommerce-org/graphcommerce/pull/2024) [`1ae747e85`](https://github.com/graphcommerce-org/graphcommerce/commit/1ae747e85faab75168718cb5ea930111d3223cc4) - Hot reloading didn't work because of a broken lingui version ([@paales](https://github.com/paales))
10
+
3
11
  ## 6.2.0-canary.83
4
12
 
5
13
  ## 6.2.0-canary.82
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": "6.2.0-canary.83",
5
+ "version": "6.2.0-canary.85",
6
6
  "type": "commonjs",
7
7
  "main": "dist/index.js",
8
8
  "types": "src/index.ts",
@@ -13,9 +13,9 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "@graphql-mesh/cli": "latest",
16
- "@lingui/loader": "4.3.0",
17
- "@lingui/swc-plugin": "^4.0.3",
18
- "@swc/core": "1.3.62",
16
+ "@lingui/loader": "4.4.0",
17
+ "@lingui/swc-plugin": "4.0.3",
18
+ "@swc/core": "1.3.77",
19
19
  "circular-dependency-plugin": "^5.2.2",
20
20
  "inspectpack": "^4.7.1",
21
21
  "js-yaml-loader": "^1.2.2",
@@ -9,7 +9,7 @@ export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> =
9
9
  export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
10
10
  /** All built-in and custom scalars, mapped to their actual values */
11
11
  export type Scalars = {
12
- ID: { input: string | number; output: string; }
12
+ ID: { input: string; output: string; }
13
13
  String: { input: string; output: string; }
14
14
  Boolean: { input: boolean; output: boolean; }
15
15
  Int: { input: number; output: number; }