@teispace/next-maker 1.4.0 → 1.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.1](https://github.com/teispace/npm-packages/compare/next-maker-v1.5.0...next-maker-v1.5.1) (2025-12-04)
4
+
5
+
6
+ ### Documentation
7
+
8
+ * update README for Next.js 16 support and clarify HTTP client setup options ([dc71c08](https://github.com/teispace/npm-packages/commit/dc71c085826be381b9c709ae0e4f240d9b61323b))
9
+
10
+ ## [1.5.0](https://github.com/teispace/npm-packages/compare/next-maker-v1.4.0...next-maker-v1.5.0) (2025-12-04)
11
+
12
+
13
+ ### Features
14
+
15
+ * enhance HTTP client setup with support for multiple clients and migration utilities ([440eaa4](https://github.com/teispace/npm-packages/commit/440eaa4f189d3bc233f506e5f2cd327f2ab6278e))
16
+
3
17
  ## [1.4.0](https://github.com/teispace/npm-packages/compare/next-maker-v1.3.0...next-maker-v1.4.0) (2025-12-03)
4
18
 
5
19
 
package/README.md CHANGED
@@ -25,10 +25,6 @@ Generate a complete Next.js application with production-ready configuration.
25
25
 
26
26
  ```bash
27
27
  npx @teispace/next-maker init [project-name]
28
- # or
29
- npx @teispace/next-maker app [project-name]
30
- # or simply
31
- npx @teispace/next-maker [project-name]
32
28
  ```
33
29
 
34
30
  **Interactive Setup:**
@@ -48,7 +44,7 @@ During initialization, you'll be prompted to configure:
48
44
 
49
45
  **Core Features:**
50
46
 
51
- - ⚡ Next.js 15+ with App Router
47
+ - ⚡ Next.js 16+ with App Router
52
48
  - 🔷 TypeScript (strict mode)
53
49
  - 🎨 Tailwind CSS v4
54
50
  - 📡 Result-based HTTP clients
@@ -58,7 +54,7 @@ During initialization, you'll be prompted to configure:
58
54
  **Example:**
59
55
 
60
56
  ```bash
61
- npx @teispace/next-maker my-awesome-app
57
+ npx @teispace/next-maker init my-awesome-app
62
58
  ```
63
59
 
64
60
  ---
@@ -73,7 +69,7 @@ npx @teispace/next-maker setup [options]
73
69
 
74
70
  **Options:**
75
71
 
76
- - `--http-client <type>` - Setup HTTP client (axios|fetch|both)
72
+ - `--http-client` - Setup HTTP client (Interactive: axios|fetch|both)
77
73
  - `--dark-theme` - Setup dark theme support (next-themes)
78
74
  - `--redux` - Setup Redux Toolkit with persistence
79
75
  - `--i18n` - Setup next-intl for internationalization
@@ -94,8 +90,8 @@ Each setup command:
94
90
  # Interactive menu
95
91
  npx @teispace/next-maker setup
96
92
 
97
- # Add HTTP clients
98
- npx @teispace/next-maker setup --http-client both
93
+ # Add HTTP clients (Interactive)
94
+ npx @teispace/next-maker setup --http-client
99
95
 
100
96
  # Add dark mode
101
97
  npx @teispace/next-maker setup --dark-theme
@@ -299,7 +295,7 @@ npm run dev
299
295
  # Add features to existing Next.js project
300
296
 
301
297
  # Add HTTP clients if you initially selected 'none'
302
- npx @teispace/next-maker setup --http-client both
298
+ npx @teispace/next-maker setup --http-client
303
299
 
304
300
  # Add dark mode support
305
301
  npx @teispace/next-maker setup --dark-theme
@@ -412,9 +408,9 @@ All commands support `--path` for custom locations:
412
408
 
413
409
  ## Command Reference
414
410
 
415
- ### Common Options
411
+ ### Generator Options (feature, slice, service)
416
412
 
417
- All commands support:
413
+ These commands support:
418
414
 
419
415
  - `[name]` - Resource name (kebab-case, prompted if omitted)
420
416
  - `--path <path>` - Custom generation path
@@ -512,7 +508,7 @@ my-project/
512
508
 
513
509
  **Generated Apps:**
514
510
 
515
- - Next.js 15+ - React framework
511
+ - Next.js 16+ - React framework
516
512
  - TypeScript - Static typing
517
513
  - Redux Toolkit - State management
518
514
  - Tailwind CSS v4 - Styling
@@ -548,7 +544,7 @@ node dist/index.js init test-project
548
544
  cd test-project
549
545
 
550
546
  # Test setup commands
551
- node ../dist/index.js setup --http-client both
547
+ node ../dist/index.js setup --http-client
552
548
  node ../dist/index.js setup --dark-theme
553
549
  node ../dist/index.js setup --redux
554
550
  node ../dist/index.js setup --i18n