build-app-with 2.0.4 → 2.0.6

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 +0 -19
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,19 +16,11 @@ An interactive CLI tool that helps you quickly set up production-ready web appli
16
16
 
17
17
  ## 🚀 Quick Start
18
18
 
19
- > **⚠️ Important**: This is a CLI tool. Don't use `npm i build-app-with` - that won't work!
20
-
21
19
  ### ✨ Recommended: Use directly (no installation needed)
22
20
  ```bash
23
21
  npx build-app-with my-awesome-app
24
22
  ```
25
23
 
26
- ### 📦 Or install globally for repeated use
27
- ```bash
28
- npm install -g build-app-with
29
- build-app-with my-app
30
- ```
31
-
32
24
  ## 💡 How it works
33
25
 
34
26
  1. **Choose your framework** - React (Next.js/Vite) or Node.js (Express/Fastify)
@@ -92,21 +84,10 @@ npm run dev # Start development server
92
84
 
93
85
  We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
94
86
 
95
- ## 📝 Version Management
96
-
97
- For maintainers:
98
-
99
- ```bash
100
- npm run version:patch # Bug fixes (2.0.0 → 2.0.1)
101
- npm run version:minor # New features (2.0.0 → 2.1.0)
102
- npm run version:major # Breaking changes (2.0.0 → 3.0.0)
103
- ```
104
-
105
87
  ## 📄 License
106
88
 
107
89
  This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
108
90
 
109
-
110
91
  ---
111
92
 
112
93
  **Why Build App With?**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-app-with",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "🚀 Interactive CLI tool to quickly create modern web applications. Use with 'npx build-app-with my-app' or install globally. Choose from React (Next.js/Vite), Node.js backends (Express/Fastify), with built-in TypeScript, authentication, databases, and more.",
5
5
  "main": "index.js",
6
6
  "type": "module",