@ctx-core/graphql-client 7.0.99 → 7.0.104

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,43 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.104
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: - module
8
+ - Updated dependencies
9
+ - Updated dependencies
10
+ - @ctx-core/object@22.0.0
11
+ - @ctx-core/dom@11.0.40
12
+ - @ctx-core/fetch@11.0.93
13
+
14
+ ## 7.0.103
15
+
16
+ ### Patch Changes
17
+
18
+ - update dependencies
19
+
20
+ ## 7.0.102
21
+
22
+ ### Patch Changes
23
+
24
+ - update dependencies
25
+
26
+ ## 7.0.101
27
+
28
+ ### Patch Changes
29
+
30
+ - @types/node: ^16.11.11 -> ^16.11.12
31
+
32
+ ## 7.0.100
33
+
34
+ ### Patch Changes
35
+
36
+ - package.json: - "main": explicitly not support cjs
37
+ - Updated dependencies
38
+ - @ctx-core/dom@11.0.39
39
+ - @ctx-core/fetch@11.0.90
40
+
3
41
  ## 7.0.99
4
42
 
5
43
  ### Patch Changes
package/COMMIT_EDITMSG CHANGED
@@ -1,2 +1 @@
1
1
 
2
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.99",
3
+ "version": "7.0.104",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,25 +17,22 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.js",
22
20
  "types": "./src/index.ts",
23
21
  "exports": {
24
22
  ".": {
25
- "require": "./dist/index.cjs",
26
23
  "import": "./dist/index.js"
27
24
  },
28
25
  "./package.json": "./package.json"
29
26
  },
30
27
  "dependencies": {
31
- "@ctx-core/dom": "^11.0.38",
32
- "@ctx-core/fetch": "^11.0.89",
33
- "@ctx-core/object": "^21.0.30"
28
+ "@ctx-core/dom": "^11.0.40",
29
+ "@ctx-core/fetch": "^11.0.93",
30
+ "@ctx-core/object": "^22.0.0"
34
31
  },
35
32
  "devDependencies": {
36
33
  "@swc/cli": "^0.1.52",
37
34
  "@swc/core": "^1.2.118",
38
- "@types/node": "^16.11.11",
35
+ "@types/node": "^16.11.12",
39
36
  "typescript": "next"
40
37
  },
41
38
  "publishConfig": {
@@ -43,7 +40,7 @@
43
40
  "cache": "~/.npm"
44
41
  },
45
42
  "scripts": {
46
- "@ctx-core/graphql": "workspace:^9.0.29",
43
+ "@ctx-core/graphql": "workspace:^9.0.30",
47
44
  "build": "npm run compile",
48
45
  "clean": "rm -rf dist",
49
46
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",