phos 1.3.0 โ†’ 1.3.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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,7 +10,7 @@ Full-stack interactive project generator CLI
10
10
  [![Node.js Version](https://img.shields.io/node/v/phos)](https://nodejs.org)
11
11
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
12
12
 
13
- **Version 1.3.0 - Production Release** ๐ŸŽ‰
13
+ **Version 1.3.1 - Production Release** ๐ŸŽ‰
14
14
 
15
15
  [View on npmjs.com](https://www.npmjs.com/package/phos)
16
16
 
@@ -25,12 +25,12 @@ Phos is a powerful CLI tool that scaffolds modern full-stack web applications wi
25
25
  ## Features
26
26
 
27
27
  - โœจ Interactive CLI with beautiful prompts
28
- - ๐Ÿš€ Multiple backend frameworks (Elysia, FastAPI)
29
- - ๐ŸŽจ Multiple frontend frameworks (Astro, Svelte, Next.js)
28
+ - ๐Ÿš€ Multiple backend frameworks (Elysia, FastAPI, NestJS)
29
+ - ๐ŸŽจ Multiple frontend frameworks (Astro, Svelte, Next.js, Vue)
30
30
  - ๐Ÿ“ฆ Monorepo support with workspace configuration
31
31
  - ๐Ÿ› ๏ธ Configurable tooling (TypeScript, ESLint, Prettier)
32
32
  - ๐ŸŽจ CSS framework options (Tailwind, SCSS, CSS Modules)
33
- - ๐Ÿงฉ UI component library support (shadcn/ui, Radix UI)
33
+ - ๐Ÿงฉ UI component library support (Ant Design, shadcn/ui, Radix UI, Vuetify)
34
34
  - ๐Ÿงช Testing framework options (Vitest, Playwright)
35
35
  - ๐Ÿ”ค Multiple package manager support (npm, yarn, pnpm, bun)
36
36
  - ๐Ÿ“ Automatic README generation
@@ -64,6 +64,7 @@ Phos is a powerful CLI tool that scaffolds modern full-stack web applications wi
64
64
  | ---------------------------------------- | ------- | ---------------------------------- |
65
65
  | [Elysia](https://elysiajs.com/) | Bun | Fast and elegant Bun web framework |
66
66
  | [FastAPI](https://fastapi.tiangolo.com/) | Python | Modern Python web framework |
67
+ | [NestJS](https://nestjs.com/) | Node.js | Progressive Node.js framework with TypeScript |
67
68
 
68
69
  #### Frontend
69
70
 
@@ -72,6 +73,7 @@ Phos is a powerful CLI tool that scaffolds modern full-stack web applications wi
72
73
  | [Astro](https://astro.build/) | Modern static site generator |
73
74
  | [SvelteKit](https://kit.svelte.dev/) | Full-stack Svelte framework |
74
75
  | [Next.js](https://nextjs.org/) | React framework with server components |
76
+ | [Vue](https://vuejs.org/) | Progressive JavaScript framework |
75
77
 
76
78
  ## Quick Start
77
79
 
@@ -131,14 +133,13 @@ Phos will guide you through a series of questions to configure your project:
131
133
  5. **Backend: Use TypeScript?** - Enable TypeScript for backend
132
134
  6. **Backend: Add ESLint?** - Add ESLint configuration
133
135
  7. **Backend: Add Prettier?** - Add Prettier configuration
134
- 8. **Frontend Framework** - Astro, Svelte, or Next.js
136
+ 8. **Frontend Framework** - Astro, Svelte, Next.js, or Vue
135
137
  9. **Frontend Package Manager** - npm, yarn, pnpm, or bun
136
138
  10. **Frontend: Use TypeScript?** - Enable TypeScript for frontend
137
139
  11. **Frontend: Add ESLint?** - Add ESLint configuration
138
140
  12. **Frontend: Add Prettier?** - Add Prettier configuration
139
141
  13. **Select CSS Framework** - No, Tailwind CSS, SCSS, or CSS Modules
140
- 14. **Add UI Components?** - No, shadcn/ui, or Radix UI
141
- 15. **Add Testing?** - No, Vitest, Playwright, or both
142
+ 14. **Add Testing?** - No, Vitest, Playwright, or both
142
143
  16. **Initialize Git?** - Initialize a Git repository
143
144
  17. **Install Dependencies?** - Auto-install dependencies after generation
144
145
 
@@ -209,7 +210,6 @@ npx phos create
209
210
  # Frontend: Add ESLint? Yes
210
211
  # Frontend: Add Prettier? Yes
211
212
  # CSS Framework: Tailwind CSS
212
- # UI Components: shadcn/ui
213
213
  # Testing: Vitest + Playwright
214
214
  # Initialize Git? Yes
215
215
  # Install dependencies? No
@@ -227,7 +227,6 @@ bunx phos create
227
227
  # Add ESLint? Yes
228
228
  # Add Prettier? Yes
229
229
  # CSS Framework: Tailwind CSS
230
- # UI Components: No
231
230
  # Testing: Vitest
232
231
  # Initialize Git? Yes
233
232
  # Install dependencies? No
@@ -278,6 +277,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
278
277
 
279
278
  Phos follows [semantic versioning](https://semver.org/).
280
279
 
280
+ - **1.3.1** - Patch release (Vue frontend support, documentation updates)
281
281
  - **1.3.0** - Minor release (NestJS backend support)
282
282
  - **1.2.1** - Patch release (TypeScript type fix)
283
283
  - **1.2.0** - Minor release (backend API architecture)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phos",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Full-stack interactive project generator CLI - Phos",
5
5
  "type": "module",
6
6
  "bin": {