Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions packages/create-express-forge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 3.3.2

### Patch Changes

- 1bf6660: Removed CEF package alias as its not avaialbe

## 3.3.0

### Minor Changes

- b089069: - Added comprehensive CLI flags for scaffolding (--pattern, --orm, --db, --logger, --test, --docker, --install).
- Added 'cef' short alias package for easier npx usage.
- Improved Prisma singleton and environment validation.
- Enhanced README and Documentation for AI-readiness and SEO.

## 3.2.0

### Minor Changes
Expand Down
2 changes: 0 additions & 2 deletions packages/create-express-forge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ Searching for an **Express TypeScript starter**? Most boilerplates are either to
Create your new project instantly:
```bash
npx create-express-forge@latest my-api
# or using the short alias
npx cef@latest my-api
```

---
Expand Down
5 changes: 2 additions & 3 deletions packages/create-express-forge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-express-forge",
"version": "3.2.0",
"version": "3.3.2",
"description": "⚡ Scaffold production-ready Express.js TypeScript backends in seconds",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -33,8 +33,7 @@
"server-template"
],
"bin": {
"create-express-forge": "./dist/index.js",
"cef": "./dist/index.js"
"create-express-forge": "./dist/index.js"
},
"files": [
"dist",
Expand Down
Loading