@ctx-core/graphql-client 7.0.112 → 7.0.116

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,36 @@
1
1
  # @ctx-core/graphql-client
2
2
 
3
+ ## 7.0.116
4
+
5
+ ### Patch Changes
6
+
7
+ - .js + .d.ts instead of .ts
8
+ - Updated dependencies
9
+ - @ctx-core/dom@11.1.2
10
+ - @ctx-core/fetch@11.0.104
11
+
12
+ ## 7.0.115
13
+
14
+ ### Patch Changes
15
+
16
+ - update dependencies
17
+
18
+ ## 7.0.114
19
+
20
+ ### Patch Changes
21
+
22
+ - update dependencies
23
+
24
+ ## 7.0.113
25
+
26
+ ### Patch Changes
27
+
28
+ - fix: error TS6059: \* is not under 'rootDir': package.json: types: ./dist/index.d.ts
29
+ - Updated dependencies
30
+ - @ctx-core/dom@11.0.48
31
+ - @ctx-core/fetch@11.0.101
32
+ - @ctx-core/object@22.0.8
33
+
3
34
  ## 7.0.112
4
35
 
5
36
  ### Patch Changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/graphql-client",
3
- "version": "7.0.112",
3
+ "version": "7.0.116",
4
4
  "description": "ctx-core graphql-client",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,22 +17,22 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "types": "./src/index.ts",
20
+ "types": "./lib/index.d.ts",
21
21
  "exports": {
22
22
  ".": {
23
- "import": "./dist/index.js"
23
+ "import": "./lib/index.js"
24
24
  },
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/dom": "^11.0.47",
29
- "@ctx-core/fetch": "^11.0.100",
30
- "@ctx-core/object": "^22.0.7"
28
+ "@ctx-core/dom": "^11.1.2",
29
+ "@ctx-core/fetch": "^11.0.104",
30
+ "@ctx-core/object": "^22.0.8"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@swc/cli": "^0.1.55",
34
- "@swc/core": "^1.2.120",
35
- "@types/node": "^17.0.0",
34
+ "@swc/core": "^1.2.124",
35
+ "@types/node": "^17.0.6",
36
36
  "rimraf": "^3.0.2",
37
37
  "typescript": "next"
38
38
  },
@@ -40,15 +40,15 @@
40
40
  "access": "public",
41
41
  "cache": "~/.npm"
42
42
  },
43
- "svelte": "./dist/index.js",
43
+ "svelte": "./lib/index.js",
44
44
  "scripts": {
45
45
  "@ctx-core/graphql": "workspace:^9.0.30",
46
46
  "build": "npm run compile",
47
- "clean": "rimraf dist && npm run clean_tsbuildinfo",
48
- "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
49
- "compile": "npm run compile_source && npm run compile_declaration",
50
- "compile_source": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
51
- "compile_declaration": "npm run clean_tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist",
47
+ "clean": "rimraf lib && npm run clean:tsbuildinfo",
48
+ "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
49
+ "compile": "npm run compile:source && npm run compile:declaration",
50
+ "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
51
+ "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
52
52
  "exec": "$@"
53
53
  },
54
54
  "readme": "# @ctx-core/graphql-client\n\nGraphQL client logic\n"
package/tsconfig.json CHANGED
@@ -22,8 +22,8 @@
22
22
  "node_modules/@types"
23
23
  ],
24
24
  "rootDir": "src",
25
- "outDir": "dist",
26
- "declarationDir": "dist",
25
+ "outDir": "lib",
26
+ "declarationDir": "lib",
27
27
  "lib": ["dom", "ESNext"],
28
28
  "types": [
29
29
  "node"
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "exclude": [
35
35
  "node_modules",
36
- "dist"
36
+ "lib"
37
37
  ],
38
38
  "references": []
39
39
  }