@ctx-core/graphql-client 7.0.100 → 7.0.105

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