@ctx-core/graphql-client 7.0.97 → 7.0.102

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,41 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.102
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
9
+ ## 7.0.101
10
+
11
+ ### Patch Changes
12
+
13
+ - @types/node: ^16.11.11 -> ^16.11.12
14
+
15
+ ## 7.0.100
16
+
17
+ ### Patch Changes
18
+
19
+ - package.json: - "main": explicitly not support cjs
20
+ - Updated dependencies
21
+ - @ctx-core/dom@11.0.39
22
+ - @ctx-core/fetch@11.0.90
23
+
24
+ ## 7.0.99
25
+
26
+ ### Patch Changes
27
+
28
+ - update dependencies
29
+ - Updated dependencies
30
+ - @ctx-core/dom@11.0.38
31
+ - @ctx-core/fetch@11.0.89
32
+
33
+ ## 7.0.98
34
+
35
+ ### Patch Changes
36
+
37
+ - update dependencies
38
+
3
39
  ## 7.0.97
4
40
 
5
41
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.97",
3
+ "version": "7.0.102",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,25 +17,23 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
20
  "module": "./dist/index.js",
22
21
  "types": "./src/index.ts",
23
22
  "exports": {
24
23
  ".": {
25
- "require": "./dist/index.cjs",
26
24
  "import": "./dist/index.js"
27
25
  },
28
26
  "./package.json": "./package.json"
29
27
  },
30
28
  "dependencies": {
31
- "@ctx-core/dom": "^11.0.37",
32
- "@ctx-core/fetch": "^11.0.88",
33
- "@ctx-core/object": "^21.0.29"
29
+ "@ctx-core/dom": "^11.0.39",
30
+ "@ctx-core/fetch": "^11.0.91",
31
+ "@ctx-core/object": "^21.0.30"
34
32
  },
35
33
  "devDependencies": {
36
34
  "@swc/cli": "^0.1.52",
37
35
  "@swc/core": "^1.2.118",
38
- "@types/node": "^16.11.11",
36
+ "@types/node": "^16.11.12",
39
37
  "typescript": "next"
40
38
  },
41
39
  "publishConfig": {
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2019",
4
+ "target": "ES2020",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,