@baeta/plugin-graphql 0.1.2 → 0.1.3

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,17 @@
1
1
  # @baeta/plugin-graphql
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#180](https://github.com/andreisergiu98/baeta/pull/180) [`483c709`](https://github.com/andreisergiu98/baeta/commit/483c70932f815fd114732c00b74f9488d7924c72) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - Raise minimum required NodeJS version to 22.12.0. Drop CommonJS builds in favor of the require_esm feature from NodeJS 22.12.0 onwards.
8
+
9
+ - [`de6e89c`](https://github.com/andreisergiu98/baeta/commit/de6e89c1b592e280967c73a4137d24ee56ef1857) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - raise es target to 2024
10
+
11
+ - Updated dependencies [[`483c709`](https://github.com/andreisergiu98/baeta/commit/483c70932f815fd114732c00b74f9488d7924c72), [`de6e89c`](https://github.com/andreisergiu98/baeta/commit/de6e89c1b592e280967c73a4137d24ee56ef1857)]:
12
+ - @baeta/generator-sdk@0.1.3
13
+ - @baeta/util-path@0.1.3
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@baeta/plugin-graphql",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "keywords": [
5
5
  "baeta",
6
6
  "graphql",
@@ -28,8 +28,7 @@
28
28
  "exports": {
29
29
  ".": {
30
30
  "types": "./dist/index.d.ts",
31
- "import": "./dist/index.js",
32
- "require": "./dist/index.cjs"
31
+ "default": "./dist/index.js"
33
32
  }
34
33
  },
35
34
  "types": "dist/index.d.ts",
@@ -44,15 +43,15 @@
44
43
  "types": "tsc --noEmit"
45
44
  },
46
45
  "dependencies": {
47
- "@baeta/generator-sdk": "^0.1.2",
48
- "@baeta/util-path": "^0.1.2",
46
+ "@baeta/generator-sdk": "^0.1.3",
47
+ "@baeta/util-path": "^0.1.3",
49
48
  "@graphql-codegen/core": "^4.0.2",
50
49
  "@graphql-codegen/plugin-helpers": "^5.1.0",
51
- "@graphql-codegen/typescript": "^4.1.1",
52
- "@graphql-codegen/visitor-plugin-common": "5.5.0",
53
- "@graphql-tools/graphql-file-loader": "^8.0.3",
54
- "@graphql-tools/load": "^8.0.4",
55
- "@graphql-tools/utils": "^10.5.6",
50
+ "@graphql-codegen/typescript": "^4.1.2",
51
+ "@graphql-codegen/visitor-plugin-common": "5.6.0",
52
+ "@graphql-tools/graphql-file-loader": "^8.0.6",
53
+ "@graphql-tools/load": "^8.0.7",
54
+ "@graphql-tools/utils": "^10.6.2",
56
55
  "auto-bind": "^5.0.1",
57
56
  "change-case-all": "2.1.0",
58
57
  "murmurhash": "^2.0.1",
@@ -61,24 +60,23 @@
61
60
  "devDependencies": {
62
61
  "@baeta/builder": "^0.0.0",
63
62
  "@baeta/tsconfig": "^0.0.0",
64
- "@types/node": "^22.9.1",
63
+ "@types/node": "^22.10.1",
65
64
  "@types/parse-filepath": "1.0.2",
66
65
  "graphql": "^16.9.0",
67
- "typescript": "^5.6.3"
66
+ "typescript": "^5.7.2"
68
67
  },
69
68
  "peerDependencies": {
70
69
  "graphql": "^16.6.0"
71
70
  },
72
71
  "engines": {
73
- "node": ">=22.0.0"
72
+ "node": ">=22.12.0"
74
73
  },
75
74
  "publishConfig": {
76
75
  "access": "public",
77
76
  "exports": {
78
77
  ".": {
79
78
  "types": "./dist/index.d.ts",
80
- "import": "./dist/index.js",
81
- "require": "./dist/index.cjs"
79
+ "default": "./dist/index.js"
82
80
  }
83
81
  }
84
82
  },
@@ -90,5 +88,12 @@
90
88
  "--no-warnings",
91
89
  "--experimental-transform-types"
92
90
  ]
91
+ },
92
+ "typedocOptions": {
93
+ "entryPoints": [
94
+ "./index.ts"
95
+ ],
96
+ "readme": "none",
97
+ "tsconfig": "./tsconfig.json"
93
98
  }
94
99
  }