@graphitation/graphql-codegen-supermassive-typed-document-node-plugin 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +5 -0
  3. package/package.json +44 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ # Change Log - @graphitation/graphql-codegen-supermassive-typed-document-node-plugin
2
+
3
+ This log was last generated on Fri, 10 Jun 2022 14:09:43 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## 0.1.0
8
+
9
+ Fri, 10 Jun 2022 14:09:43 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - Supermassive typed document node plugin added (jakubvejr@microsoft.com)
14
+ - Bump @graphitation/supermassive to v0.8.3
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Custom GraphQL codegen plugins
2
+
3
+ ## supermassive-typed-document-node
4
+
5
+ Do the same stuff as the original typed-document-node plugin except it extends GraphQL AST data to match Supermassive AST
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@graphitation/graphql-codegen-supermassive-typed-document-node-plugin",
3
+ "license": "MIT",
4
+ "version": "0.1.0",
5
+ "main": "./lib/index",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/microsoft/graphitation.git",
9
+ "directory": "packages/graphql-codegen-supermassive-typed-document-node-plugin"
10
+ },
11
+ "scripts": {
12
+ "build": "monorepo-scripts build",
13
+ "lint": "monorepo-scripts lint",
14
+ "types": "monorepo-scripts types",
15
+ "just": "monorepo-scripts"
16
+ },
17
+ "devDependencies": {
18
+ "@graphitation/supermassive": "*",
19
+ "@graphql-codegen/plugin-helpers": "^1.18.2",
20
+ "@graphql-codegen/visitor-plugin-common": "^1.17.20",
21
+ "@types/jest": "^26.0.22",
22
+ "graphql-tag": "^2.11.0",
23
+ "@graphql-tools/optimize": "^1.0.1",
24
+ "monorepo-scripts": "*"
25
+ },
26
+ "peerDependencies": {
27
+ "@graphql-codegen/plugin-helpers": ">= 1.18.0 < 2",
28
+ "@graphql-codegen/visitor-plugin-common": ">= ^1.17.0 < 2",
29
+ "graphql-tag": ">= 2.11.0 < 3",
30
+ "@graphql-tools/optimize": "^1.0.1",
31
+ "@graphitation/supermassive": ">= 0.8.3"
32
+ },
33
+ "sideEffects": false,
34
+ "access": "public",
35
+ "publishConfig": {},
36
+ "types": "./lib/index.d.ts",
37
+ "module": "./lib/index.mjs",
38
+ "exports": {
39
+ ".": {
40
+ "import": "./lib/index.mjs",
41
+ "require": "./lib/index.js"
42
+ }
43
+ }
44
+ }