Skip to content

Commit

Permalink
v2.1.0 - New Scaffolding Flows
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCates committed Jun 26, 2023
1 parent 75b3a6b commit 4498e8e
Show file tree
Hide file tree
Showing 26 changed files with 550 additions and 11 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# 🛠️ CHANGELOG

## 2.1.0

- Updated how metadata is handled

- Added 3 new commands

```bash
printer layout [path]
printer loading [path]
printer error [path]
```

These commands behave similar to the `page` command. But instead generate layout, loading and error components for pages.

## v2.0.2

- Ensure API routes have `application/json` header
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.0.2-blue.svg)
![version](https://img.shields.io/badge/version-2.1.0-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
1 change: 1 addition & 0 deletions dist/src/generators/error.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare function generateError(path: string): Promise<void>;
81 changes: 81 additions & 0 deletions dist/src/generators/error.js

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

1 change: 1 addition & 0 deletions dist/src/generators/error.js.map

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

1 change: 1 addition & 0 deletions dist/src/generators/layout.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare function generateLayout(path: string): Promise<void>;
81 changes: 81 additions & 0 deletions dist/src/generators/layout.js

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

1 change: 1 addition & 0 deletions dist/src/generators/layout.js.map

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

1 change: 1 addition & 0 deletions dist/src/generators/loading.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export declare function generateLoading(path: string): Promise<void>;
81 changes: 81 additions & 0 deletions dist/src/generators/loading.js

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

1 change: 1 addition & 0 deletions dist/src/generators/loading.js.map

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

Loading

0 comments on commit 4498e8e

Please sign in to comment.