prisma-nestjs-graphql 18.0.2 → 18.1.1
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/LICENSE +1 -1
- package/README.md +6 -0
- package/bin.js +1 -1
- package/{index.js → generate.cjs} +552 -847
- package/generate.d.ts +338 -0
- package/index.cjs +28 -0
- package/index.d.ts +2 -0
- package/package.json +21 -3
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -701,6 +701,12 @@ model User {
|
|
|
701
701
|
export class User {}
|
|
702
702
|
```
|
|
703
703
|
|
|
704
|
+
### Using lirary in other generators
|
|
705
|
+
|
|
706
|
+
```ts
|
|
707
|
+
import { generate } from 'prisma-nestjs-graphql/generate';
|
|
708
|
+
```
|
|
709
|
+
|
|
704
710
|
## Similar Projects
|
|
705
711
|
|
|
706
712
|
- https://github.com/jasonraimondi/prisma-generator-nestjs-graphql
|
package/bin.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
require('./index.
|
|
2
|
+
require('./index.cjs');
|