graphql-codegen-registry 0.0.1 → 0.0.2
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 +12 -0
- package/dist/plugin/index.d.ts +6 -3
- package/dist/plugin/index.js +14796 -4
- package/dist/plugin/index.js.map +1 -1
- package/dist/preset/index.js +38 -2
- package/dist/preset/index.js.map +1 -1
- package/package.json +16 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.0.2
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/lewebsimple/graphql-codegen-registry/compare/v0.0.1...v0.0.2)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Configure Vitest ([c7ef935](https://github.com/lewebsimple/graphql-codegen-registry/commit/c7ef935))
|
|
10
|
+
- Update dependencies and enhance preset tests for type generation ([f7a15a7](https://github.com/lewebsimple/graphql-codegen-registry/commit/f7a15a7))
|
|
11
|
+
- Add typed-document-node plugin ([9a24288](https://github.com/lewebsimple/graphql-codegen-registry/commit/9a24288))
|
|
12
|
+
- Implement plugin functionality for operation registry ([cfdcdf3](https://github.com/lewebsimple/graphql-codegen-registry/commit/cfdcdf3))
|
|
13
|
+
- Remove resultBaseType and add fragment test ([66b650a](https://github.com/lewebsimple/graphql-codegen-registry/commit/66b650a))
|
|
14
|
+
|
|
3
15
|
## v0.0.1
|
|
4
16
|
|
|
5
17
|
### 🚀 Enhancements
|
package/dist/plugin/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
declare const plugin:
|
|
3
|
-
|
|
1
|
+
import type { PluginFunction } from "@graphql-codegen/plugin-helpers";
|
|
2
|
+
export declare const plugin: PluginFunction;
|
|
3
|
+
declare const _default: {
|
|
4
|
+
plugin: PluginFunction;
|
|
5
|
+
};
|
|
6
|
+
export default _default;
|