@ctx-core/graphql-client 7.0.96 → 7.0.100

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,39 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.100
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - "main": explicitly not support cjs
8
+ - Updated dependencies
9
+ - @ctx-core/dom@11.0.39
10
+ - @ctx-core/fetch@11.0.90
11
+
12
+ ## 7.0.99
13
+
14
+ ### Patch Changes
15
+
16
+ - update dependencies
17
+ - Updated dependencies
18
+ - @ctx-core/dom@11.0.38
19
+ - @ctx-core/fetch@11.0.89
20
+
21
+ ## 7.0.98
22
+
23
+ ### Patch Changes
24
+
25
+ - update dependencies
26
+
27
+ ## 7.0.97
28
+
29
+ ### Patch Changes
30
+
31
+ - @swc/core: ^1.2.117 -> ^1.2.118
32
+ - Updated dependencies
33
+ - @ctx-core/dom@11.0.37
34
+ - @ctx-core/fetch@11.0.88
35
+ - @ctx-core/object@21.0.29
36
+
3
37
  ## 7.0.96
4
38
 
5
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.96",
3
+ "version": "7.0.100",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,7 +17,6 @@
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": {
@@ -28,13 +27,13 @@
28
27
  "./package.json": "./package.json"
29
28
  },
30
29
  "dependencies": {
31
- "@ctx-core/dom": "^11.0.36",
32
- "@ctx-core/fetch": "^11.0.87",
33
- "@ctx-core/object": "^21.0.28"
30
+ "@ctx-core/dom": "^11.0.39",
31
+ "@ctx-core/fetch": "^11.0.90",
32
+ "@ctx-core/object": "^21.0.30"
34
33
  },
35
34
  "devDependencies": {
36
35
  "@swc/cli": "^0.1.52",
37
- "@swc/core": "^1.2.117",
36
+ "@swc/core": "^1.2.118",
38
37
  "@types/node": "^16.11.11",
39
38
  "typescript": "next"
40
39
  },
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,