@ctx-core/graphql-client 7.0.102 → 7.0.106

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 +34 -0
  2. package/package.json +12 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.106
4
+
5
+ ### Patch Changes
6
+
7
+ - package.json: svelte: ./dist/index.js
8
+ - Updated dependencies
9
+ - Updated dependencies
10
+ - @ctx-core/dom@11.0.41
11
+ - @ctx-core/fetch@11.0.94
12
+ - @ctx-core/object@22.0.1
13
+
14
+ ## 7.0.105
15
+
16
+ ### Patch Changes
17
+
18
+ - @types/node: ^16.11.12 -> ^16.11.13
19
+
20
+ ## 7.0.104
21
+
22
+ ### Patch Changes
23
+
24
+ - package.json: - module
25
+ - Updated dependencies
26
+ - Updated dependencies
27
+ - @ctx-core/object@22.0.0
28
+ - @ctx-core/dom@11.0.40
29
+ - @ctx-core/fetch@11.0.93
30
+
31
+ ## 7.0.103
32
+
33
+ ### Patch Changes
34
+
35
+ - update dependencies
36
+
3
37
  ## 7.0.102
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.102",
3
+ "version": "7.0.106",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,33 +17,34 @@
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
  ".": {
22
+ "types": "./src/index.ts",
24
23
  "import": "./dist/index.js"
25
24
  },
26
25
  "./package.json": "./package.json"
27
26
  },
28
27
  "dependencies": {
29
- "@ctx-core/dom": "^11.0.39",
30
- "@ctx-core/fetch": "^11.0.91",
31
- "@ctx-core/object": "^21.0.30"
28
+ "@ctx-core/dom": "^11.0.41",
29
+ "@ctx-core/fetch": "^11.0.94",
30
+ "@ctx-core/object": "^22.0.1"
32
31
  },
33
32
  "devDependencies": {
34
- "@swc/cli": "^0.1.52",
35
- "@swc/core": "^1.2.118",
36
- "@types/node": "^16.11.12",
33
+ "@swc/cli": "^0.1.55",
34
+ "@swc/core": "^1.2.120",
35
+ "@types/node": "^16.11.13",
36
+ "rimraf": "^3.0.2",
37
37
  "typescript": "next"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public",
41
41
  "cache": "~/.npm"
42
42
  },
43
+ "svelte": "./dist/index.js",
43
44
  "scripts": {
44
- "@ctx-core/graphql": "workspace:^9.0.29",
45
+ "@ctx-core/graphql": "workspace:^9.0.30",
45
46
  "build": "npm run compile",
46
- "clean": "rm -rf dist",
47
+ "clean": "rimraf dist",
47
48
  "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
48
49
  "exec": "$@"
49
50
  }