Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
v2.1.1 - Circular Import Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCates committed Jun 28, 2023
1 parent 4498e8e commit 3785fc2
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 🛠️ CHANGELOG

## 2.1.1

- Fix for `prisma` circular import definitions

## 2.1.0

- Updated how metadata is handled
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Automation Tooling for Next, Redux and Prisma

![license](https://img.shields.io/badge/license-AGPLv3-blue.svg)
![version](https://img.shields.io/badge/version-2.1.0-blue.svg)
![version](https://img.shields.io/badge/version-2.1.1-blue.svg)
[![CircleCI](https://circleci.com/gh/PrinterFramework/CLI.svg?style=svg)](https://circleci.com/gh/PrinterFramework/CLI)
[![codecov](https://codecov.io/gh/PrinterFramework/CLI/branch/master/graph/badge.svg)](https://codecov.io/gh/PrinterFramework/CLI)

Expand Down
2 changes: 1 addition & 1 deletion dist/src/generators/prisma.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ interface ModelType {
type: string;
imported: boolean;
}
export declare function generateImports(models: ModelType[]): string;
export declare function generateImports(name: string, models: ModelType[]): string;
export declare function generatePrismaTypes(): Promise<void>;
export {};
19 changes: 10 additions & 9 deletions dist/src/generators/prisma.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/generators/prisma.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/printer.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3785fc2

Please sign in to comment.