create-next-pro-stack 1.0.0 → 1.0.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.
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,25 @@ BlitzStack automatically installs and configures the following professional pack
36
36
 
37
37
  ## 🚀 Getting Started
38
38
 
39
- ### 1. Local Installation
39
+ You don't need to install anything globally. Simply run the command below using **npx** to start your next big project:
40
40
 
41
- First, clone this repository and link the CLI tool to your local machine:
41
+ ### 1. Create a New Project
42
42
 
43
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
49
-
50
- # Link the tool globally
51
- npm link
44
+ npx create-next-pro-stack my-awesome-project
52
45
  ```
53
46
 
54
- ### 2. Creating a New Project
47
+ ### 2. Manual Installation (Optional)
55
48
 
56
- Now you can create a new **BlitzStack** project from anywhere in your terminal:
49
+ If you want to install the CLI tool globally on your system:
57
50
 
58
51
  ```bash
52
+ npm install -g create-next-pro-stack
53
+
54
+ # Then run:
59
55
  create-next-pro-stack my-awesome-project
60
56
  ```
61
57
 
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
58
  ---
72
59
 
73
60
  ## 📁 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.1",
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
  }`,