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

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCates committed Oct 9, 2023
1 parent 207767f commit 5206af2
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 🛠️ CHANGELOG

## 2.2.3

- Make sure to add `eslint-plugin-n` to `package.json`

- Remove `redux/hooks.tsx` since it's now deprecated in the 13.5.3 to Printer.

## 2.2.2

- Updated `app/layout.tsx` to use suspense boundaries.
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.2.2-blue.svg)
![version](https://img.shields.io/badge/version-2.2.3-blue.svg)
[![CircleCI](https://circleci.com/gh/PrinterFramework/CLI.svg?style=svg)](https://circleci.com/gh/PrinterFramework/CLI)

**Printer v1.x.x** is compatible with the old Next patterns. You can review the documentation on the v1 website: [v1.prntr.click/docs](https://v1.prntr.click/docs)
Expand Down
1 change: 0 additions & 1 deletion dist/src/generators/new.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/new.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.

1 change: 1 addition & 0 deletions dist/src/templates/new/package.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@printerframework/cli",
"description": "🖨️ Automation Tooling for Next, Redux and Prisma.",
"version": "2.2.2",
"version": "2.2.3",
"private": false,
"preferGlobal": true,
"repository": "https:/PrinterFramework/CLI.git",
Expand Down
1 change: 0 additions & 1 deletion src/generators/new.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ export async function generateNewProject (path: string = '.') {
}

const redux = [
'hooks.tsx',
'provider.tsx',
'reducer.tsx',
'reducers.json',
Expand Down
2 changes: 1 addition & 1 deletion src/printer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { SuperagentTypes, injectSupergent } from './generators/superagent'
export const Printer = new Command('🖨️ Printer')

Printer
.version('2.2.2')
.version('2.2.3')
.description('🖨️ Printer: Automation Tooling for Next, Redux and Prisma.')
.option('-a, --no-action', 'do not inject actions', false)
.option('-s, --no-state', 'do not inject state', false)
Expand Down
1 change: 1 addition & 0 deletions src/templates/new/package.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
Expand Down
5 changes: 0 additions & 5 deletions src/templates/new/redux/hooks.tsx.template

This file was deleted.

0 comments on commit 5206af2

Please sign in to comment.