@ctx-core/graphql-client 7.0.103 → 7.0.107

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 +38 -0
  2. package/package.json +14 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.107
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: package.json: exports
8
+ - Updated dependencies
9
+ - @ctx-core/dom@11.0.42
10
+ - @ctx-core/fetch@11.0.95
11
+ - @ctx-core/object@22.0.2
12
+
13
+ ## 7.0.106
14
+
15
+ ### Patch Changes
16
+
17
+ - package.json: svelte: ./dist/index.js
18
+ - Updated dependencies
19
+ - Updated dependencies
20
+ - @ctx-core/dom@11.0.41
21
+ - @ctx-core/fetch@11.0.94
22
+ - @ctx-core/object@22.0.1
23
+
24
+ ## 7.0.105
25
+
26
+ ### Patch Changes
27
+
28
+ - @types/node: ^16.11.12 -> ^16.11.13
29
+
30
+ ## 7.0.104
31
+
32
+ ### Patch Changes
33
+
34
+ - package.json: - module
35
+ - Updated dependencies
36
+ - Updated dependencies
37
+ - @ctx-core/object@22.0.0
38
+ - @ctx-core/dom@11.0.40
39
+ - @ctx-core/fetch@11.0.93
40
+
3
41
  ## 7.0.103
4
42
 
5
43
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.103",
3
+ "version": "7.0.107",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -12,38 +12,39 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/ctx-core/graphql-client/issues"
15
+ "url": "https://github.com/ctx-core/graphql-client.git"
16
16
  },
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
- "import": "./dist/index.js"
22
+ "import": "./dist/index.js",
23
+ "types": "./src/index.ts"
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.92",
31
- "@ctx-core/object": "^21.0.30"
28
+ "@ctx-core/dom": "^11.0.42",
29
+ "@ctx-core/fetch": "^11.0.95",
30
+ "@ctx-core/object": "^22.0.2"
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
  }