@graphitation/apollo-react-relay-duct-tape-compiler 1.5.6 → 1.6.0
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 +10 -2
- package/lib/typeGenerator.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
# Change Log - @graphitation/apollo-react-relay-duct-tape-compiler
|
|
2
2
|
|
|
3
|
-
<!-- This log was last generated on
|
|
3
|
+
<!-- This log was last generated on Tue, 22 Oct 2024 16:47:33 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.6.0
|
|
8
|
+
|
|
9
|
+
Tue, 22 Oct 2024 16:47:33 GMT
|
|
10
|
+
|
|
11
|
+
### Minor changes
|
|
12
|
+
|
|
13
|
+
- revert back to typescript 5 (Stanislaw.Wilczynski@microsoft.com)
|
|
14
|
+
|
|
7
15
|
## 1.5.6
|
|
8
16
|
|
|
9
|
-
Thu, 17 Oct 2024 14:
|
|
17
|
+
Thu, 17 Oct 2024 14:53:14 GMT
|
|
10
18
|
|
|
11
19
|
### Patches
|
|
12
20
|
|
package/lib/typeGenerator.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TypeGenerator } from "relay-compiler/lib/language/RelayLanguagePluginInterface";
|
|
2
|
-
export declare function generateFactory(wrappedGenerate: TypeGenerator["generate"]): (schema: import("relay-compiler").Schema, node: import("relay-compiler").
|
|
2
|
+
export declare function generateFactory(wrappedGenerate: TypeGenerator["generate"]): (schema: import("relay-compiler").Schema, node: import("relay-compiler").Fragment | import("relay-compiler").Root, options: import("relay-compiler/lib/language/RelayLanguagePluginInterface").TypeGeneratorOptions) => string;
|
|
3
3
|
//# sourceMappingURL=typeGenerator.d.ts.map
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphitation/apollo-react-relay-duct-tape-compiler",
|
|
3
3
|
"description": "The build tools to cater to @graphitation/apollo-react-relay-duct-tape's needs.",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.6.0",
|
|
6
6
|
"main": "./lib/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"duct-tape-compiler": "./lib/cli.js"
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"relay-test-utils": "^12.0.0",
|
|
39
39
|
"relay-test-utils-internal": "^12.0.0",
|
|
40
40
|
"ts-node": "^10.4.0",
|
|
41
|
-
"typescript": "
|
|
41
|
+
"typescript": "<5",
|
|
42
42
|
"@types/yargs": "^17.0.13"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"graphql": "^15.0.0",
|
|
46
46
|
"@graphitation/supermassive": "^3.5.5",
|
|
47
|
-
"typescript": "
|
|
47
|
+
"typescript": "<5"
|
|
48
48
|
},
|
|
49
49
|
"publishConfig": {
|
|
50
50
|
"access": "public"
|