create-next-pro-stack 1.0.0 → 1.0.2

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.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  **BlitzStack** is a powerful, professional-grade CLI tool designed to scaffold high-performance Next.js applications in seconds. It comes pre-configured with industry-standard patterns, a premium UI/UX structure, and a robust state-management architecture.
4
4
 
5
- Built by **[Jahirul](https://github.com/jahirul077)** for developers who value speed, consistency, and best practices.
5
+ Built by **[Jahirul Islam](https://github.com/jahirul077)** for developers who value speed, consistency, and best practices.
6
6
 
7
7
  ---
8
8
 
@@ -36,38 +36,29 @@ BlitzStack automatically installs and configures the following professional pack
36
36
 
37
37
  ## 🚀 Getting Started
38
38
 
39
- ### 1. Local Installation
39
+ > [!IMPORTANT]
40
+ > **Use npx for Instant Setup:**
41
+ > To avoid installation issues, we recommend using **npx**. This ensures you are always using the latest version of BlitzStack.
40
42
 
41
- First, clone this repository and link the CLI tool to your local machine:
43
+ ### 1. Create a New Project
42
44
 
43
- ```bash
44
- # Clone the repository
45
- git clone <your-repo-link>
46
-
47
- # Navigate to the folder
48
- cd create-next-stack-CLI-Tools
45
+ Run this command in your terminal:
49
46
 
50
- # Link the tool globally
51
- npm link
47
+ ```bash
48
+ npx create-next-pro-stack my-awesome-project
52
49
  ```
53
50
 
54
- ### 2. Creating a New Project
51
+ ### 2. Manual Installation (Optional)
55
52
 
56
- Now you can create a new **BlitzStack** project from anywhere in your terminal:
53
+ If you want to install the CLI tool globally on your system:
57
54
 
58
55
  ```bash
56
+ npm install -g create-next-pro-stack
57
+
58
+ # Then run:
59
59
  create-next-pro-stack my-awesome-project
60
60
  ```
61
61
 
62
- ### 3. Development
63
-
64
- The tool will automatically:
65
-
66
- - Initialize the Next.js app.
67
- - Install all dependencies.
68
- - Apply the professional folder structure.
69
- - **Run the development server (`npm run dev`) automatically.**
70
-
71
62
  ---
72
63
 
73
64
  ## 📁 Folder Structure Overview
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-next-pro-stack",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A professional CLI tool to quickly scaffold Next.js projects with Redux, React Query, TailwindCSS, and premium UI.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -153,9 +153,6 @@ export default function OverviewPage() {
153
153
  return (
154
154
  <div className="flex flex-col items-center justify-center min-h-[60vh] gap-4">
155
155
  <h1 className="text-4xl font-bold tracking-tight">Overview Page </h1>
156
- <Link href="/" className="text-primary hover:underline font-medium italic text-xl">
157
- Go to Home
158
- </Link>
159
156
  </div>
160
157
  );
161
158
  }`,