create-ng-tailwind 3.0.1 → 4.0.0

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 (47) hide show
  1. package/CHANGELOG.md +81 -344
  2. package/README.md +93 -157
  3. package/lib/cli/index.js +29 -3
  4. package/lib/cli/interactive.js +26 -1
  5. package/lib/managers/ProjectManager.js +0 -4
  6. package/lib/templates/base/components.js +243 -0
  7. package/lib/templates/base/index.js +207 -0
  8. package/lib/templates/base/infrastructure.js +314 -0
  9. package/lib/templates/base/linting.js +359 -0
  10. package/lib/templates/base/pwa.js +103 -0
  11. package/lib/templates/base/services.js +362 -0
  12. package/lib/templates/blog/app.js +250 -0
  13. package/lib/templates/blog/components.js +360 -0
  14. package/lib/templates/blog/i18n.js +77 -0
  15. package/lib/templates/blog/index.js +126 -0
  16. package/lib/templates/blog/pages.js +554 -0
  17. package/lib/templates/blog/services.js +390 -0
  18. package/lib/templates/dashboard/app.js +320 -0
  19. package/lib/templates/dashboard/charts.js +305 -0
  20. package/lib/templates/dashboard/components.js +410 -0
  21. package/lib/templates/dashboard/i18n.js +340 -0
  22. package/lib/templates/dashboard/index.js +141 -0
  23. package/lib/templates/dashboard/layout.js +310 -0
  24. package/lib/templates/dashboard/pages.js +681 -0
  25. package/lib/templates/ecommerce/app.js +315 -0
  26. package/lib/templates/ecommerce/components.js +496 -0
  27. package/lib/templates/ecommerce/i18n.js +389 -0
  28. package/lib/templates/ecommerce/index.js +152 -0
  29. package/lib/templates/ecommerce/layout.js +270 -0
  30. package/lib/templates/ecommerce/pages.js +969 -0
  31. package/lib/templates/ecommerce/services.js +300 -0
  32. package/lib/templates/index.js +12 -0
  33. package/lib/templates/landing/index.js +1117 -0
  34. package/lib/templates/portfolio/index.js +1160 -0
  35. package/lib/templates/saas/index.js +1371 -0
  36. package/lib/templates/starter/app.js +364 -0
  37. package/lib/templates/starter/i18n.js +856 -0
  38. package/lib/templates/starter/index.js +53 -4055
  39. package/lib/templates/starter/layout.js +852 -0
  40. package/lib/templates/starter/pages.js +1241 -0
  41. package/package.json +1 -1
  42. package/lib/templates/starter/features.js +0 -867
  43. package/lib/utils/ai-config.js +0 -641
  44. /package/lib/templates/{starter → base}/advanced-features.js +0 -0
  45. /package/lib/templates/{starter → base}/seo-assets.js +0 -0
  46. /package/lib/templates/{starter → base}/seo-features.js +0 -0
  47. /package/lib/templates/{starter → base}/ui-features.js +0 -0
package/CHANGELOG.md CHANGED
@@ -5,391 +5,128 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [3.0.1] - 2025-11-30
8
+ ## [4.0.0] - 2025-12-25
9
9
 
10
- ### 🗑️ Removed
11
-
12
- - **Husky**: Removed Husky and lint-staged from the starter template
13
- - Removed `husky` and `lint-staged` dev dependencies
14
- - Removed `prepare` script for Husky installation
15
- - Removed `setupHusky()` method
16
- - Removed Husky references from UI and documentation
17
- - Projects now use ESLint + Prettier without pre-commit hooks (developers can add Husky manually if needed)
18
-
19
- ## [3.0.0] - 2025-11-30
20
-
21
- ### 💥 Breaking Changes
22
-
23
- - **Angular CLI Alignment**: Now fully relies on Angular CLI for project configuration
24
- - Removed custom `ensureZoneJs()` method - Angular CLI handles zone.js natively
25
- - Explicitly passes `--zoneless=false` or `--zoneless=true` to Angular CLI in non-interactive mode
26
- - Projects now match exactly what `ng new` produces interactively
27
-
28
- ### 🐛 Bug Fixes
10
+ ### New Template
29
11
 
30
- - **zone.js Configuration**: Fixed issue where zone.js was not being properly configured when selecting "No" for zoneless application
31
- - Fixes runtime error `NG0908: In this configuration Angular requires Zone.js`
32
-
33
- ## [2.2.0] - 2025-11-01
34
-
35
- ### ✨ New Features - Comprehensive Tailwind v4 Theming System
36
-
37
- - **Complete Theme System using Tailwind v4 @theme directive**:
38
- - Added comprehensive color theming with 7 semantic color scales (primary, secondary, accent, success, danger, warning, info)
39
- - Each color includes full 50-950 scale for maximum flexibility
40
- - All colors defined using modern `@theme` directive in `styles.css`
41
- - Automatic utility class generation (bg-*, text-*, border-*, ring-*, etc.)
42
-
43
- - **Theme Customization**:
44
- - Easy customization by editing CSS custom properties in `styles.css`
45
- - Clear documentation and usage examples in theme configuration
46
- - All components automatically update when theme colors change
47
- - No JavaScript configuration needed - pure CSS approach
48
-
49
- - **Updated All Components to Use Theme Colors**:
50
- - ButtonComponent: Uses primary, secondary, and danger theme colors
51
- - ToastComponent: Uses success, danger, warning, and info colors
52
- - LoadingSpinnerComponent: Supports all theme color variants
53
- - Contact page: Gradient backgrounds using primary, secondary, and accent
54
- - Header component: Navigation and active states use primary theme
55
- - Home & About pages: Hero sections and feature cards use theme colors
56
- - Auth pages: Login, Register, Forgot Password use primary theme
57
- - Footer: Links use primary theme colors
58
-
59
- - **Developer Experience**:
60
- - Comprehensive inline documentation in `styles.css`
61
- - Usage examples for all theme colors
62
- - Clear instructions for customization
63
- - Consistent color usage across all generated components
64
-
65
- ### 🎨 Design Improvements
66
-
67
- - Replaced all hardcoded blue, cyan, red, green colors with semantic theme colors
68
- - Updated gradients to use primary-secondary-accent combinations
69
- - Error states now use danger theme color instead of hardcoded red
70
- - Success states use success theme color instead of hardcoded green
71
- - Info messages use info theme color
72
- - Warning states use warning theme color
73
-
74
- ## [2.1.1] - 2025-10-30
75
-
76
- ### 🐛 Fixed
77
-
78
- - **SSR Hydration Error in Contact Form**: Fixed NG0500 hydration mismatch in contact component textarea
79
- - Removed whitespace between textarea opening and closing tags
80
- - Prevents "Angular expected a text node but the node was not found" error
81
- - Ensures proper SSR hydration when Server-Side Rendering is enabled
82
-
83
- - **AI Config Prettier Formatting**: All AI configuration templates (CLAUDE.md, .cursorrules, .windsurfrules) now pass Prettier formatting checks automatically
84
- - Added empty lines before code blocks for proper markdown formatting
85
- - Added parentheses around arrow function parameters (arrowParens: "always")
86
- - Reordered Tailwind CSS classes according to prettier-plugin-tailwindcss
87
- - Added trailing commas in objects and arrays per Prettier config
88
- - Fixed HTML example indentation and structure
89
- - Renamed Claude file to CLAUDE.md (uppercase) to match Angular CLI convention
90
- - Scaffolded projects now pass `npm run format:check` without manual fixes
91
-
92
- ## [2.1.0] - 2025-10-28
12
+ - **Dashboard Template**: Complete admin dashboard with sidebar navigation, charts, data tables, and analytics
93
13
 
94
- ### New Features - Simple SEO Solution
95
-
96
- - **Simple SEO Service** (Easy to use, easy to extend):
97
- - ✅ Dynamic meta tags (title, description, keywords)
98
- - ✅ Open Graph tags for social sharing (Facebook, LinkedIn)
99
- - ✅ Twitter Card tags for optimized sharing
100
- - ✅ Canonical URL management (auto-updated on route changes)
101
- - ✅ Structured data (JSON-LD) support
102
- - 🎯 **Only 2 methods**: `updateMeta()` and `addStructuredData()` - that's it!
103
- - 📝 Well-documented with clear examples
104
- - 🔧 Developers can easily extend with more features as needed
105
-
106
- - **Essential Structured Data**:
107
- - ✅ Organization schema (company info, logo, social profiles)
108
- - ✅ WebSite schema (site name, description)
109
- - 💡 Comment in code shows how to add more schemas (Article, Product, FAQ, etc.)
110
- - 🎯 Keep it simple - only what's actually being used
111
-
112
- - **SEO Assets**:
113
- - `robots.txt` - Properly configured for Angular apps with sitemap reference
114
- - Default Open Graph image (1200x630px SVG placeholder)
115
- - Complete favicon set (SVG with project initial)
116
- - Apple Touch Icon for iOS devices
117
- - Android Chrome icons (192x192 and 512x512)
118
- - Logo SVG with project branding
119
- - All placeholders include clear instructions for replacement
120
-
121
- - **Pre-Integrated & Ready to Use**:
122
- - ✅ All page components (Home, About, Contact) have SEO meta tags configured
123
- - ✅ App component includes Organization and WebSite structured data
124
- - ✅ SEO service auto-updates canonical URLs on navigation
125
- - ✅ Works seamlessly with existing i18n system
126
- - ✅ SSR-compatible for server-side rendering
127
- - ✅ TypeScript interfaces for type safety
128
- - ✅ Well-documented with JSDoc comments and usage examples
129
-
130
- ### 🧹 Maintenance
131
-
132
- - **Package Cleanup**: Removed CLAUDE.md from published package (internal development file)
14
+ ### 📊 Template Count: 4 Total
133
15
 
134
- ### 🐛 Fixed
16
+ 1. **Minimal** - Clean slate (Angular + Tailwind CSS only)
17
+ 2. **Starter** - Professional foundation with auth, i18n, SEO
18
+ 3. **Dashboard** - Admin panel with charts and analytics (NEW)
135
19
 
136
- - **LICENSE Link**: Fixed LICENSE link in README to work properly on npmjs.com (changed from relative link to descriptive text)
137
- - **Directory Overwrite Flow**: Ensured consistent behavior between local and npx usage. Directory existence check now always happens AFTER configuration questions in both cases.
20
+ ### 🎨 Dashboard Features
138
21
 
139
- ## [2.0.2] - 2025-10-24
22
+ - **Layout**
23
+ - Collapsible sidebar navigation with icons
24
+ - Dashboard header with user profile dropdown
25
+ - Language switcher (EN/AR) with RTL support
26
+ - Dark mode ready
27
+ - Responsive mobile-first design
140
28
 
141
- ### 📝 Documentation
29
+ - **Components**
30
+ - Stats cards with icons and trend indicators
31
+ - Chart components (Bar, Line, Donut)
32
+ - Data table with sorting and pagination
33
+ - Breadcrumb navigation
142
34
 
143
- - **CHANGELOG**: Added v2.0.1 and v2.0.2 entries to published package
144
- - **PUBLISHING.md**: Updated version references and simplified guidance
35
+ - **Pages**
36
+ - Overview - Dashboard home with stats and charts
37
+ - Analytics - Detailed metrics and visualizations
38
+ - Users - User management with data table
39
+ - Orders - Order tracking and management
40
+ - Settings - Application settings
145
41
 
146
- ## [2.0.1] - 2025-10-24
42
+ - **i18n Support**
43
+ - English and Arabic translations
44
+ - RTL/LTR direction switching
45
+ - Language persistence
147
46
 
148
- ### 📝 Documentation Improvements
47
+ ### 🏗️ Architecture Improvements
149
48
 
150
- - **README Enhancements**: Removed "Related Projects" section, consolidated duplicate support sections, improved project structure documentation
151
- - **Terminal Output**: Simplified CLI output to be minimal and professional with green checkmarks and white text
152
- - **Accuracy Fixes**: Corrected pipe count from 4 to 2 (Truncate, TimeAgo) in all documentation and translations
153
- - **Better Organization**: Enhanced "Starter Template Features" section with detailed breakdown of core services, UI components, and utilities
49
+ - **Modular Template Structure**: Templates now use modular file organization (app.js, layout.js, pages.js, components.js, charts.js, i18n.js)
50
+ - **Base Template Refactored**: Split into focused modules (services, components, infrastructure, linting, pwa)
154
51
 
155
- ## [2.0.0] - 2025-01-20
52
+ ---
156
53
 
157
- **Major Release with Breaking Changes** - This release includes significant updates to the CLI architecture, template system, and development workflow. Review the breaking changes and migration guide below before upgrading.
54
+ ## [3.1.0] - 2025-11-30
158
55
 
159
- ### 📈 Release Highlights
56
+ ### New Features
160
57
 
161
- - **Professional Starter Template** with 20+ production-ready features (i18n, auth UI, interceptors, services)
162
- - 🎨 **Simplified CSS-Only Approach** aligned with Tailwind v4 official recommendations
163
- - 🎯 **Enhanced User Experience** with interactive mode by default (like `ng new`)
164
- - 🔒 **Private Repository Model** focused on quality and stability
165
- - 🤖 **Advanced AI Integration** supporting 6 different AI development tools
166
- - 🎮 **Interactive UI Components** including Toast notifications, Modal dialogs, and custom directives
58
+ - **simple-git-hooks**: Lightweight pre-commit hooks (~1KB vs Husky's ~40KB)
59
+ - Runs `npm run lint` before each commit
60
+ - Auto-setup via `prepare` script
61
+ - Config in package.json
167
62
 
168
- ### 🚨 BREAKING CHANGES
63
+ ### 🗑️ Removed
169
64
 
170
- - **CSS-Only Approach**: Removed SCSS/Sass/Less support - CSS is now the only stylesheet option (aligns with Tailwind v4 official recommendations)
171
- - **Template System Redesign**: Changed template option from "none" to "minimal" for better clarity
172
- - **Interactive Mode is Default**: Removed `--interactive` flag - interactive mode is now default behavior (like `ng new`)
173
- - **Repository Now Private**: No longer accepting public contributions - package remains available on npm
65
+ - **Husky**: Replaced with simple-git-hooks
174
66
 
175
- ### 🎉 Major New Features
67
+ ---
176
68
 
177
- - 🤖 **AI Configuration Files (Tool-Specific)**
69
+ ## [3.0.0] - 2025-11-30
178
70
 
179
- - Creates `.claude/claude.md` if Claude is selected
180
- - Creates `.cursorrules` if Cursor is selected
181
- - Creates `.windsurfrules` if Windsurf is selected
182
- - Each config file includes comprehensive Angular + Tailwind guidelines
183
- - Includes project structure, tech stack, coding patterns, and examples
184
- - Works with Claude Code, Cursor, Copilot, Windsurf, Gemini, and JetBrains
185
- - ~400 lines of context for AI assistants
71
+ ### 💥 Breaking Changes
186
72
 
187
- - **HTTP Interceptors (Starter Template)**
73
+ - **Angular CLI Alignment**: Explicitly passes `--zoneless` flag to Angular CLI
74
+ - Fixes NG0908 zone.js runtime error
188
75
 
189
- - **Auth Interceptor** - Automatically adds JWT tokens to requests
190
- - **Error Interceptor** - Global error handling with toast notifications
191
- - **Loading Interceptor** - Shows/hides loading state automatically
192
- - **Caching Interceptor** - Caches GET requests (5min TTL)
193
- - All interceptors pre-configured in `app.config.ts`
76
+ ---
194
77
 
195
- - 🔔 **Toast/Notification System (Starter Template)**
78
+ ## [2.2.0] - 2025-11-01
196
79
 
197
- - `ToastService` with success, error, warning, info methods
198
- - Animated toast component with auto-dismiss
199
- - Queue management for multiple toasts
200
- - Fully integrated in root app component
80
+ ### Tailwind v4 Theming
201
81
 
202
- - 💬 **Modal/Dialog System (Starter Template)**
82
+ - Complete color theming with `@theme` directive
83
+ - 7 semantic color scales (primary, secondary, accent, success, danger, warning, info)
84
+ - All components updated to use theme colors
203
85
 
204
- - `ModalService` with confirm, alert, and custom modal support
205
- - Promise-based API for easy async handling
206
- - Configurable sizes (sm, md, lg, xl, full)
207
- - Gray semi-transparent backdrop (bg-opacity-30) for better visibility
208
- - Backdrop click and ESC key support
209
- - Full keyboard accessibility (ARIA roles, tabindex)
86
+ ---
210
87
 
211
- - 🔧 **Truncate Pipe (Starter Template)**
88
+ ## [2.1.1] - 2025-10-30
212
89
 
213
- - `TruncatePipe` - Text truncation with word boundaries and custom ellipsis
90
+ ### 🐛 Fixed
214
91
 
215
- - 🎮 **Interactive Examples on Home Page (Starter Template)**
92
+ - SSR hydration error in contact form
93
+ - AI config templates now pass Prettier checks
216
94
 
217
- - Live Toast notification examples (Success, Error, Warning, Info)
218
- - Modal dialog demonstrations (Confirm, Alert)
219
- - Practical code examples showing ToastService and ModalService usage
220
- - Helps users understand how to use included services
95
+ ---
221
96
 
222
- - **Custom Directives (Starter Template)**
97
+ ## [2.1.0] - 2025-10-28
223
98
 
224
- - `ClickOutsideDirective` - Detect clicks outside element
225
- - `TooltipDirective` - Beautiful tooltips with positioning
99
+ ### SEO Service
226
100
 
227
- - 🛠️ **Supporting Services (Starter Template)**
228
- - `LoadingService` - Reactive loading state with signals
229
- - `CacheService` - HTTP response caching with TTL
101
+ - Dynamic meta tags, Open Graph, Twitter Cards
102
+ - Structured data (JSON-LD) support
103
+ - robots.txt, favicons, OG images
230
104
 
231
- ### 🔧 Changed
105
+ ---
232
106
 
233
- - **Template Renamed**: "none" → "minimal" for better clarity
234
- - **Interactive Mode is Default**: CLI now prompts for all configuration options by default (like `ng new`)
235
- - **Repository Visibility**: Changed from public to private repository
236
- - **Package Structure**: Simplified to focus on core CLI functionality
237
- - **Documentation**: Updated all documentation to reflect private repository model
107
+ ## [2.0.0] - 2025-01-20
238
108
 
239
- ### 🗑️ Removed
109
+ ### 🚨 Breaking Changes
240
110
 
241
- - **Test Suite**: Removed `test.js` and all test-related infrastructure
242
- - **Public Contributions**: Removed CONTRIBUTING.md and contribution workflow
243
- - **GitHub Integration**: Removed repository URLs and issue tracking references
244
- - **SCSS/Sass/Less Support**: Removed preprocessor support (CSS-only approach for Tailwind v4)
111
+ - CSS-only approach (removed SCSS/Sass/Less)
112
+ - Template renamed: "none" "minimal"
113
+ - Interactive mode is now default
245
114
 
246
- ### 🐛 Fixed
115
+ ### Major Features
247
116
 
248
- - 🔧 **ESLint & TypeScript Compliance (Starter Template)**
249
-
250
- - Created proper `ModalData` interface with typed properties
251
- - Replaced `HttpResponse<any>` with `HttpResponse<unknown>` in CacheService
252
- - Removed unused imports (createComponent, ApplicationRef, EnvironmentInjector)
253
- - Fixed accessibility issues in ModalComponent (ARIA roles, keyboard handlers)
254
- - Added helper methods (`getModalType()`, `getModalMessage()`) to avoid index signature issues
255
- - Used `eslint-disable-next-line` for legitimate `any` use in Promise resolver
256
- - **Fixed Angular v20 `app.ts` ESLint error** - Added "App" to allowed component class suffixes to support Angular v20's new naming convention
257
- - All generated code now compiles and passes `ng lint` without errors
258
-
259
- - 📝 **Template Renamed: "none" → "minimal"**
260
-
261
- - Better clarity: "Minimal" describes clean Angular + Tailwind starter
262
- - Updated CLI descriptions to show feature differences
263
- - All documentation and prompts updated
264
-
265
- - 🎨 **Starter Template Enhanced**
266
-
267
- - Updated feature list in CLI with all new capabilities
268
- - Now shows: "Professional foundation (routing, i18n, auth UI, components, services, interceptors)"
269
- - Feature count increased from 15 to 20+ features
270
-
271
- - 🎯 **CSS-Only Approach (Tailwind v4 Official)** 🚨 **BREAKING CHANGE**
272
-
273
- - **Removed SCSS/Sass/Less support** - CSS is now the only stylesheet option
274
- - Aligns with **Tailwind CSS v4 official recommendations** (v4 doesn't support preprocessors)
275
- - Removed `--style` CLI option
276
- - Removed stylesheet format prompt from interactive mode
277
- - Always uses CSS with modern features (nesting, variables)
278
- - Simpler, faster builds with PostCSS + LightningCSS
279
- - Migration note: If you need SCSS, use Tailwind CSS v3 or migrate to modern CSS
280
-
281
- - 🎯 **Interactive Mode is Now Default** (Like `ng new`)
282
- - CLI now prompts for all configuration options by default
283
- - Removed `--interactive` flag (interactive is now the default behavior)
284
- - Questions asked in order:
285
- 1. Project name (if not provided)
286
- 2. Template (None or Starter)
287
- 3. Enable SSR? (Server-Side Rendering)
288
- 4. Enable Zoneless? (without zone.js)
289
- 5. AI tools to configure (None, Claude, Cursor, Gemini, Copilot, JetBrains, Windsurf) - **Multiple selection supported**
290
- - All prompts can be skipped by providing values via CLI flags
291
- - Example: `npx create-ng-tailwind my-app --template=starter`
292
-
293
- ### Added
294
-
295
- - 🎨 **New CLI Options**:
296
- - `--routing` / `--no-routing` - Enable/disable Angular routing
297
- - `--ssr` - Enable Server-Side Rendering
298
- - `--zoneless` - Create zoneless application
299
- - `--ai-config <tools>` - Configure AI tools (delegated to Angular CLI)
300
- - 🌍 **i18n Translation Support** (Starter template)
301
- - Full English and Arabic translations
302
- - Reactive language switcher in header (desktop & mobile)
303
- - RTL (Right-to-Left) support for Arabic
304
- - Auto-detects browser language
305
- - Saves language preference to localStorage
306
- - Uses `@ngx-translate` with HTTP loader
307
- - Translation files in `public/assets/i18n/`
308
- - All components, pages, and UI elements translated
309
- - 📁 **Assets now in `public/assets/`** instead of `src/assets/`
310
- - Translation files: `public/assets/i18n/`
311
- - Images: `public/assets/images/`
312
- - Removed empty `src/styles/` folder
313
-
314
- ### Improved
315
-
316
- - Better user experience: Interactive prompts guide users through setup like `ng new`
317
- - More discoverable: Users see all available options during setup
318
- - Proper Angular project structure with assets in public folder
319
- - Fast mode available for CI/CD by providing all options via flags
320
- - AI configuration delegated to Angular CLI for native support and updates
321
-
322
- ### 📊 Migration Guide from v1.x to v2.0
323
-
324
- #### Breaking Changes Impact:
325
-
326
- 1. **CSS-Only Approach**:
327
-
328
- - **Before (v1.x)**: `--style` flag supported css, scss, sass, less
329
- - **After (v2.0)**: Only CSS is supported (--style flag removed)
330
- - **Migration**: If you need SCSS, continue using v1.x or migrate to modern CSS
331
-
332
- 2. **Template Names**:
333
-
334
- - **Before (v1.x)**: `--template=none`
335
- - **After (v2.0)**: `--template=minimal`
336
- - **Migration**: Update scripts to use `minimal` instead of `none`
337
-
338
- 3. **Interactive Mode**:
339
-
340
- - **Before (v1.x)**: Non-interactive by default, `--interactive` flag to enable
341
- - **After (v2.0)**: Interactive by default, provide all flags to skip prompts
342
- - **Migration**: Add all required flags to CI/CD scripts for non-interactive mode
343
-
344
- 4. **Repository & Support**:
345
- - **Before (v1.x)**: Public repository accepting contributions
346
- - **After (v2.0)**: Private repository, email-based support only
347
- - **Migration**: Contact via email for support (tehseen_ullah786@hotmail.com)
348
-
349
- #### Recommended Update Command:
350
-
351
- ```bash
352
- # Update to v2.0.0
353
- npx create-ng-tailwind@latest my-app --template=minimal
354
-
355
- # Or with starter template (recommended)
356
- npx create-ng-tailwind@latest my-app --template=starter
357
- ```
117
+ - AI configuration files (Claude, Cursor, Windsurf)
118
+ - HTTP interceptors (Auth, Error, Loading, Caching)
119
+ - Toast & Modal systems
120
+ - i18n with RTL support
121
+ - Custom directives (ClickOutside, Tooltip)
358
122
 
359
123
  ---
360
124
 
361
125
  ## [1.0.0] - 2025-09-03
362
126
 
363
- ### Added
364
-
365
- - 🚀 Initial release of create-ng-tailwind CLI
366
- - Angular 20 project scaffolding with Tailwind preconfigured
367
- - 🎨 Modern Tailwind setup using `@tailwindcss/postcss`
368
- - 📋 Interactive mode (`--interactive`) with guided prompts
369
- - ⚡ Fast non-interactive mode with best practice defaults
370
- - 🛠️ Traditional Angular file naming (`*.component.*`)
371
- - 🔧 Comprehensive CLI options:
372
- - Angular routing (enabled by default)
373
- - Server-Side Rendering (SSR) support
374
- - Zoneless application support
375
- - AI tools configuration
376
- - 🎯 Beautiful starter templates with Tailwind examples
377
- - 📱 Responsive design examples
378
- - 📚 Professional documentation
379
-
380
- ### Features
381
-
382
- - **Best Practice Defaults**: CSS + Routing + No AI tools
383
- - **Zero Configuration**: Works out of the box
384
- - **Professional Setup**: Traditional Angular file structure
385
- - **Modern Tooling**: Latest Angular and Tailwind versions
386
- - **Cross-Platform**: Windows, macOS, and Linux support
387
-
388
- ## [Unreleased]
389
-
390
- ### Planned
391
-
392
- - Angular schematic support (`ng add`)
393
- - UI library integrations
394
- - Authentication boilerplates
395
- - Docker setup
127
+ ### 🚀 Initial Release
128
+
129
+ - Angular 20 + Tailwind CSS v4 scaffolding
130
+ - Interactive CLI with guided prompts
131
+ - SSR and zoneless support
132
+ - AI tools configuration