@digilogiclabs/create-saas-app 1.19.9 → 2.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 (56) hide show
  1. package/CHANGELOG.md +27 -317
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/cli/commands/create.d.ts +10 -0
  4. package/dist/cli/commands/create.d.ts.map +1 -1
  5. package/dist/cli/commands/create.js +10 -0
  6. package/dist/cli/commands/create.js.map +1 -1
  7. package/dist/cli/prompts/project-setup.d.ts.map +1 -1
  8. package/dist/cli/prompts/project-setup.js +28 -0
  9. package/dist/cli/prompts/project-setup.js.map +1 -1
  10. package/dist/generators/package-installer.d.ts.map +1 -1
  11. package/dist/generators/package-installer.js +11 -1
  12. package/dist/generators/package-installer.js.map +1 -1
  13. package/dist/generators/template-generator.d.ts +13 -1
  14. package/dist/generators/template-generator.d.ts.map +1 -1
  15. package/dist/generators/template-generator.js +128 -52
  16. package/dist/generators/template-generator.js.map +1 -1
  17. package/dist/templates/mobile/base/template/App.tsx +11 -5
  18. package/dist/templates/mobile/base/template/babel.config.js +6 -0
  19. package/dist/templates/mobile/base/template/package.json +4 -4
  20. package/dist/templates/mobile/ui-auth-payments/template/app/_layout.tsx +11 -4
  21. package/dist/templates/mobile/ui-auth-payments/template/package.json +5 -5
  22. package/dist/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +11 -4
  23. package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
  24. package/dist/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +134 -0
  25. package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
  26. package/dist/templates/web/base/template/package.json +5 -4
  27. package/dist/templates/web/base/template/src/lib/platform.ts +146 -0
  28. package/dist/templates/web/ui-auth/template/package.json +4 -3
  29. package/dist/templates/web/ui-auth/template/src/lib/platform.ts +137 -0
  30. package/dist/templates/web/ui-auth-payments/template/.env.example +51 -15
  31. package/dist/templates/web/ui-auth-payments/template/package.json +5 -4
  32. package/dist/templates/web/ui-auth-payments/template/src/lib/platform.ts +146 -0
  33. package/dist/templates/web/ui-auth-payments-ai/template/.env.example +60 -22
  34. package/dist/templates/web/ui-auth-payments-ai/template/package.json +6 -5
  35. package/dist/templates/web/ui-auth-payments-ai/template/src/lib/platform.ts +155 -0
  36. package/package.json +6 -6
  37. package/src/templates/mobile/base/template/App.tsx +11 -5
  38. package/src/templates/mobile/base/template/babel.config.js +6 -0
  39. package/src/templates/mobile/base/template/package.json +4 -4
  40. package/src/templates/mobile/ui-auth-payments/template/app/_layout.tsx +11 -4
  41. package/src/templates/mobile/ui-auth-payments/template/package.json +5 -5
  42. package/src/templates/mobile/ui-auth-payments-ai/template/app/_layout.tsx +11 -4
  43. package/src/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
  44. package/src/templates/mobile/ui-auth-payments-ai-rag/template/app/_layout.tsx +134 -0
  45. package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
  46. package/src/templates/web/base/template/package.json +5 -4
  47. package/src/templates/web/base/template/src/lib/platform.ts +146 -0
  48. package/src/templates/web/ui-auth/template/package.json +4 -3
  49. package/src/templates/web/ui-auth/template/src/lib/platform.ts +137 -0
  50. package/src/templates/web/ui-auth-payments/template/.env.example +51 -15
  51. package/src/templates/web/ui-auth-payments/template/package.json +5 -4
  52. package/src/templates/web/ui-auth-payments/template/src/lib/platform.ts +146 -0
  53. package/src/templates/web/ui-auth-payments-ai/template/.env.example +60 -22
  54. package/src/templates/web/ui-auth-payments-ai/template/package.json +6 -5
  55. package/src/templates/web/ui-auth-payments-ai/template/src/lib/platform.ts +155 -0
  56. package/bin/index.js +0 -36
package/CHANGELOG.md CHANGED
@@ -1,332 +1,42 @@
1
1
  # @digilogiclabs/create-saas-app
2
2
 
3
- ## 1.19.9
4
-
5
- ### Patch Changes
6
-
7
- - 🚀 **Critical Mobile Template Deployment Fixes**
8
- - **Assets Generation**: CLI now automatically creates `assets/` directory with required placeholder files
9
- - `icon.png`, `splash.png`, `adaptive-icon.png`, `favicon.png` (1x1 transparent PNG placeholders)
10
- - **Dependency Resolution**: Fixed missing required dependencies for iOS deployment
11
- - Added `expo-constants: ~16.0.2`, `expo-linking: ~6.3.1`, `expo-status-bar: ~1.12.1`
12
- - Added `react-native-web: ~0.19.10`, `react-dom: 18.2.0`, `@react-native/assets-registry: ^0.81.1`
13
- - Removed conflicting `@types/react-native` from devDependencies across all templates
14
- - **Android Package Format**: Fixed Android package name to use valid camelCase format
15
- - Changed from `com.my-app-name.app` to `com.myAppName.app` for proper reverse DNS compliance
16
- - **Build Configuration**: Added `.expo/` to `.gitignore` for all mobile templates
17
- - Prevents Expo build artifacts from being committed to repositories
18
-
19
- ### Mobile Template Quality Improvements
20
-
21
- - ✅ **100% iOS Deployment Ready**: Generated projects now work out-of-the-box for iOS App Store submission
22
- - ✅ **Dependency Completeness**: All required Expo and React Native dependencies included
23
- - ✅ **Package Name Validation**: Android package names follow proper naming conventions
24
- - ✅ **Asset Management**: Automatic generation of all required mobile app assets
25
- - ✅ **Git Integration**: Proper .gitignore configuration for mobile development workflow
26
-
27
- ### Technical Enhancements
28
-
29
- - 🔧 **Template Generator**: Enhanced mobile project generation with asset creation pipeline
30
- - 📦 **Package Resolution**: Eliminated peer dependency conflicts and missing package errors
31
- - 🛠 **Build Optimization**: Reduced manual setup steps required after project generation
32
- - ✅ **Deployment Testing**: Verified mobile template generation produces deployment-ready projects
33
-
34
- ## 1.19.8
35
-
36
- ### Patch Changes
37
-
38
- - 🚀 **Native Mobile App Generation Improvements**
39
- - **Latest Package Versions**: Updated all mobile templates to use latest stable packages
40
- - `@digilogiclabs/saas-factory-ui`: `^0.27.0` → `^0.27.1` (Fixed peer dependencies)
41
- - `@digilogiclabs/saas-factory-auth`: `^1.0.4` → `^1.0.5` (React Native compatibility)
42
- - `@digilogiclabs/saas-factory-payments`: `^1.2.5` → `^1.2.6` (React Native compatibility)
43
- - **Expo SDK Upgrade**: Updated from `~50.0.0` to `~51.0.0` for better stability
44
- - **Native Dependencies**: Added missing essential dependencies for better out-of-box experience
45
- - `@react-native-community/netinfo`: Updated to `^11.0.0`
46
- - `expo-linear-gradient`: Added `~12.3.0` for UI package compatibility
47
- - `@stripe/stripe-react-native`: Ensured `~0.28.0` for payments
48
-
49
- ### Mobile Template Enhancements
50
-
51
- - ✅ **iOS Permissions**: Added comprehensive iOS permission descriptions
52
- - `NSPhotoLibraryUsageDescription`: "This app accesses the photo library to select images"
53
- - Enhanced camera and location permission descriptions
54
- - ✅ **EAS Build Configuration**: Standardized EAS CLI version to `>= 5.7.0` across all templates
55
- - ✅ **Base Template Completion**: Added missing `app.json` and `eas.json` to base mobile template
56
- - ✅ **Configuration Consistency**: Aligned all mobile templates for production deployment
57
-
58
- ### Technical Improvements
59
-
60
- - 🔧 **Peer Dependency Fixes**: All packages now support React Native 0.72.0+ without upper bounds
61
- - 📦 **Dependency Resolution**: Fixed `@react-native-netinfo/netinfo` → `@react-native-community/netinfo` alignment
62
- - 🛠 **Build Optimization**: Ensured all mobile templates work out-of-the-box with latest package versions
63
- - ✅ **Generation Testing**: Verified mobile template generation produces working projects with correct dependencies
64
-
65
- ## 1.19.7
66
-
67
- ### Patch Changes
68
-
69
- - 📱 **Mobile Template Native Capabilities Enhancement**
70
- - **Package Updates**: Updated all mobile templates to latest stable versions
71
- - `@digilogiclabs/saas-factory-ui`: `^0.26.1` → `^0.27.0`
72
- - `@digilogiclabs/saas-factory-auth`: `^1.0.3` → `^1.0.4`
73
- - `@digilogiclabs/saas-factory-payments`: `^1.2.3` → `^1.2.5`
74
- - **Environment Variables**: Fixed all `NEXT_PUBLIC_*` → `EXPO_PUBLIC_*` for proper Expo compatibility
75
- - **TypeScript Configuration**: Updated `moduleResolution` from `"node"` to `"bundler"` for modern bundler compatibility
76
- - **Native Dependencies**: Added missing dependencies (`@supabase/ssr`, updated `@stripe/stripe-react-native` to `0.28.0`)
77
- - **RAG Template Completion**: Added missing configuration files for `ui-auth-payments-ai-rag` template
78
-
79
- ### Templates Enhanced
80
-
81
- - ✅ **mobile/ui-auth-payments**: Updated dependencies, fixed environment variables, improved TypeScript config
82
- - ✅ **mobile/ui-auth-payments-ai**: Updated dependencies, fixed environment variables, improved TypeScript config
83
- - ✅ **mobile/ui-auth-payments-ai-rag**: Added complete configuration files, updated dependencies
84
- - ✅ **mobile/base**: Updated dependencies for compatibility
85
- - 📚 **README**: Updated with correct mobile commands and latest package versions
86
-
87
- ### Technical Improvements
88
-
89
- - 🔧 **Environment Variable Consistency**: All mobile templates now use proper `EXPO_PUBLIC_` prefixes
90
- - 📦 **Dependency Alignment**: Ensured all mobile templates use latest downstream package versions
91
- - 🛠 **Configuration Completeness**: RAG template now has all required config files (tsconfig.json, app.json, babel.config.js, metro.config.js, eas.json)
92
- - ✅ **Generation Testing**: Verified mobile template generation works correctly with updated dependencies
93
-
94
- ## 1.19.1
95
-
96
- ### Patch Changes
97
-
98
- - 🔧 **Critical Payment Template Fix**
99
- - **Issue**: Missing Stripe dependencies (`@stripe/react-stripe-js`, `@stripe/stripe-js`) in web payment templates causing build failures
100
- - **Solution**: Added missing dependencies to all web payment templates
101
- - **Package Update**: Updated all payment templates to use `@digilogiclabs/saas-factory-payments@^1.2.2` with proper peer dependencies
102
- - **Impact**: All payment templates now build and function correctly without dependency errors
103
-
104
- ### Templates Fixed
105
-
106
- - ✅ **web/ui-auth-payments**: Added Stripe React dependencies
107
- - ✅ **web/ui-auth-payments-ai**: Added Stripe React dependencies
108
- - ✅ **web/ui-auth-payments-audio**: Added Stripe React dependencies
109
- - ✅ **web/ui-auth-payments-video**: Added Stripe React dependencies
110
- - ✅ **web/ui-auth-payments-ai-rag**: Added Stripe React dependencies
111
- - ✅ **mobile/***: Already had correct React Native Stripe dependencies
112
-
113
- ## 1.19.0
3
+ ## 1.0.0
114
4
 
115
5
  ### Major Changes
116
6
 
117
- - 🔧 **Critical JSX-Mustache Template Processing Fix**
118
- - **Issue**: JSX object literals (e.g., `style={{ flex: 1 }}`) were being incorrectly parsed as mustache variables, causing widespread syntax errors in mobile templates
119
- - **Solution**: Implemented sophisticated brace-counting parser that intelligently protects JSX syntax during template processing
120
- - **Impact**: Mobile template generation now works flawlessly with zero JSX syntax errors
121
-
122
- - 📦 **Package Version Updates Across All Templates**
123
- - **UI Package**: `^0.25.2` → `^0.26.0` (React 18.2/19 compatibility)
124
- - **Auth Package**: `^1.0.1` → `^1.0.2` (Complete profile management)
125
- - **Payments Package**: `^1.1.0` → `^1.2.0` (Mobile components + missing exports)
126
- - **AI Package**: `^3.0.0`/`^3.1.1` → `^4.0.1` (RAG fixes + enhanced features)
127
- - **AI Types Package**: `^3.0.0` → `^4.0.1` (Enhanced RAG interfaces)
128
-
129
- ### Technical Improvements
130
-
131
- - 🛠 **Enhanced Template Generator**: Added intelligent JSX object literal protection
132
- - 📱 **Mobile Template Stability**: Resolved 95+ TypeScript compilation errors
133
- - 🔄 **Cross-Platform Compatibility**: Ensured React 18.2 and 19.0 support
134
- - 🎯 **Template Processing**: Maintains full mustache variable functionality while protecting JSX
135
-
136
- ### Bug Fixes
137
-
138
- - Fixed JSX syntax corruption in mobile templates
139
- - Resolved missing closing div tag in web ui-auth-payments template
140
- - Updated all package references to latest stable versions
141
- - **Critical Fix**: Added missing Stripe dependencies (`@stripe/react-stripe-js`, `@stripe/stripe-js`) to all web payment templates
142
- - **Package Update**: Updated all payment templates to use `@digilogiclabs/saas-factory-payments@^1.2.2` with proper peer dependencies
143
-
144
- ## 1.18.0
145
-
146
- ### Minor Changes
147
-
148
- - 🚀 **RAG Knowledge System v4.0.0 - Complete AI Templates**
149
-
150
- #### 🧠 **New RAG-Powered Templates**
151
- - **Web Template**: `ui-auth-payments-ai-rag` - Full-stack AI knowledge platform
152
- - **Mobile Template**: `ui-auth-payments-ai-rag` - React Native AI assistant with offline support
153
- - **Auto-Selection**: CLI automatically chooses RAG templates with `--with-ai=rag` or `--with-ai=knowledge`
154
-
155
- #### 🎯 **Web RAG Features**
156
- - **Intelligent Chat Interface**: Streaming responses with source citations and confidence scores
157
- - **Knowledge Management**: Full CRUD operations, bulk import/export, and advanced search
158
- - **Analytics Dashboard**: Usage insights, performance metrics, and user satisfaction tracking
159
- - **Multi-Domain Support**: Pre-configured for plants, e-commerce, education, or generic use
160
- - **Production-Ready**: Caching, rate limiting, security policies, and SEO optimization
161
-
162
- #### 📱 **Mobile RAG Features**
163
- - **Voice-Enabled Chat**: Native speech recognition and text-to-speech
164
- - **Offline-First Architecture**: Cached responses, queued queries, and smart synchronization
165
- - **Touch-Optimized UI**: Swipeable knowledge cards, haptic feedback, and native gestures
166
- - **Camera Integration**: Document scanning and visual knowledge search
167
- - **Background Sync**: Knowledge updates while app is backgrounded
168
-
169
- #### 🛠 **Technical Implementation**
170
- - **AI Packages**: Updated to `@digilogiclabs/saas-factory-ai@4.0.0` and `@digilogiclabs/saas-factory-ai-types@4.0.0`
171
- - **Database Schema**: PostgreSQL with vector embeddings (pgvector extension)
172
- - **Search Functions**: Hybrid search combining vector similarity and full-text search
173
- - **Setup Scripts**: One-command RAG system initialization with `npm run setup:rag`
174
- - **Comprehensive Documentation**: Complete setup guides, API references, and examples
175
-
176
- #### 🚀 **Quick Start**
177
- ```bash
178
- # Create RAG-powered web app
179
- npx create-saas-app web my-ai-platform --with-ai=rag
180
-
181
- # Create RAG-powered mobile app
182
- npx create-saas-app mobile my-ai-assistant --with-ai=rag
183
-
184
- # Setup and seed knowledge base
185
- npm run setup:rag && npm run seed:knowledge
186
- ```
187
-
188
- #### 📊 **Template Capabilities**
189
- - **Generic AI Assistant**: Configurable for any domain
190
- - **Plant Care Assistant**: Botanical expertise with seasonal guidance
191
- - **E-commerce Assistant**: Product search and shopping recommendations
192
- - **Education Platform**: Tutoring with adaptive explanations
193
- - **Custom Domains**: Fully configurable for specific use cases
194
-
195
- ## 1.17.1
196
-
197
- ### Patch Changes
198
-
199
- - 🎉 **Quality of Life Enhancements Across All Templates**
200
-
201
- #### 🌐 **Web Template Improvements**
202
- - **Toast Notification System**: Added `Toaster` component to all web app providers for user feedback
203
- - **Enhanced Loading States**: Upgraded loading screens with `SkeletonCard` and `SkeletonText` components
204
- - **Search Functionality**: Added `SearchBar` with mobile-responsive design and toast feedback
205
- - **Command Palette**: Verified and enhanced existing `CommandPalette` integration across dashboards
206
- - **Theme System**: Maintained existing `ThemeToggle` with light/dark/system support
207
- - **Fixed**: JSON parsing issue in ui-auth-ai template package.json
208
-
209
- #### 📱 **Mobile Template Enhancements**
210
- - **Native Toast System**: Added `NativeToast` component to all mobile app providers
211
- - **Advanced Skeleton Loading**: Enhanced loading states with realistic content placeholders
212
- - **Verified Existing Features**: Confirmed all premium mobile QoL features are properly implemented:
213
- - Pull-to-refresh with haptic feedback ✅
214
- - Search functionality with `NativeSearchBar` ✅
215
- - Comprehensive haptic feedback integration ✅
216
- - Swipe gestures with `SwipeableCard` components ✅
217
- - Network-aware content and offline support ✅
218
- - Native tours and progressive image loading ✅
219
-
220
- #### 🛠 **Technical Improvements**
221
- - **Build Verification**: All templates compile successfully
222
- - **Package Integrity**: 2.6MB compressed, 14.8MB unpacked
223
- - **Backward Compatibility**: All changes are non-destructive
224
- - **Cross-Platform**: Enhanced both web and mobile template experiences
225
-
226
- ## 1.6.0
227
-
228
- ### Minor Changes
229
-
230
- - 🎨 Mobile-First UI Library v0.13.0 Integration
231
-
232
- ### ✨ Major Template Enhancements
233
-
234
- #### 📱 Mobile-First Optimization Complete
235
- - **Hamburger Navigation**: Animated hamburger menus with smooth transitions and haptic feedback across all templates
236
- - **Context-Aware Banners**: Animated moving marquee banners that adapt to network conditions and template context
237
- - **Touch-Optimized Components**: 44px minimum touch targets, gesture controls, and SwipeableCard interactions
238
- - **Network Intelligence**: Adaptive content based on connection quality (2G, 4G, 5G) with offline support
239
-
240
- #### 🎭 Template-Specific Features
241
- - **Audio Templates**: Music streaming quality indicators, playlist navigation, audio-specific banners
242
- - **Video Templates**: Video quality adaptation, watch later functionality, streaming status banners
243
- - **Payment Templates**: Mobile-first checkout flows with touch-friendly payment processing
244
- - **All Templates**: Pull-to-refresh, progressive image loading, skeleton states, haptic feedback
245
-
246
- #### 🚀 SaaS Factory UI v0.13.0 Components
247
- - `ResponsiveHeader`, `HamburgerIcon`, `MobileNavigation` with animations
248
- - `PageTransition`, `MobileHero`, `NetworkAwareContent`, `OfflineWrapper`
249
- - `SwipeableCard`, `PullToRefresh`, `LazyImage`, `ProgressiveImage`
250
- - `VirtualScrollList`, `MobileContainer` for optimal mobile experiences
251
- - Network hooks: `useNetworkInfo`, `useOfflineState`, `useCache`
252
-
253
- #### 🎨 Enhanced CSS & Animations
254
- - Marquee banner animations with reduced-motion support
255
- - Hamburger menu transform animations with cubic-bezier easing
256
- - Mobile-first responsive design with touch-action optimizations
257
- - Video-specific aspect ratio containers and progressive loading
258
- - Haptic feedback animations for enhanced mobile interactions
259
-
260
- #### 📦 Templates Updated
261
- - ✅ **ui-auth-payments**: Complete mobile-first SaaS with payments
262
- - ✅ **ui-auth-payments-audio**: Mobile music streaming app template
263
- - ✅ **ui-auth-payments-video**: Mobile video streaming app template
264
- - ✅ **ui-auth**: Cross-device authentication template
265
- - ✅ **ui-only**: Clean mobile-first UI template
266
- - ✅ **base**: Foundation template with mobile optimizations
267
-
268
- ### 🔧 Technical Improvements
269
- - Upgraded all templates to SaaS Factory UI Library v0.13.0
270
- - Cross-platform compatibility (Web + React Native ready)
271
- - Network-aware adaptive experiences with intelligent content delivery
272
- - Enhanced accessibility with proper focus management and screen reader support
273
- - Performance optimizations with lazy loading and progressive enhancement
274
-
275
- All templates now provide production-ready, mobile-first user experiences with comprehensive touch optimizations and network intelligence.
276
-
277
- ### Patch Changes
278
-
279
- - f0c527c: alignment for release
280
-
281
- ## 1.5.0
282
-
283
- ### 🎯 Major Enhancements - Best Practices Implementation
284
-
285
- #### ✨ New Features
286
-
287
- - **Testing Infrastructure**: Added Vitest with React Testing Library to all templates
288
- - **Environment Validation**: Type-safe environment variables with Zod validation
289
- - **Enhanced Error Handling**: Professional error boundaries and loading states
290
- - **Development Performance**: Turbopack integration for faster development builds
291
- - **Enhanced Utilities**: 10+ new utility functions (formatCurrency, debounce, etc.)
292
-
293
- #### 🔧 Developer Experience
294
-
295
- - **Test Scripts**: `npm run test`, `npm run test:ui`, `npm run test:run` in all templates
296
- - **Type Safety**: Enhanced TypeScript configuration and type checking
297
- - **Performance**: `next dev --turbo` for faster development builds
298
- - **Code Quality**: Pre-configured test mocks for Next.js, Auth, and Payments
299
-
300
- #### 📁 Template Enhancements
7
+ **Initial Monorepo Release** - Version reset to 1.0.0 for unified DLL Platform monorepo.
301
8
 
302
- - **Error Boundaries**: Professional error pages with retry functionality in all templates
303
- - **Loading States**: Clean loading components with spinners in all templates
304
- - **Environment Config**: Type-safe environment validation in all templates
305
- - **Enhanced Utils**: Comprehensive utility functions in all templates
306
- - **Test Setup**: Complete testing infrastructure with example tests
9
+ This is the first official release as part of the consolidated DLL Platform monorepo. Previous version history preserved below.
307
10
 
308
- #### 🎨 Templates Enhanced
11
+ ### Features
309
12
 
310
- - **ui-auth-payments**: Full SaaS with comprehensive best practices
311
- - **ui-auth-payments-audio**: Audio SaaS with all enhancements
312
- - **ui-auth-payments-video**: Video SaaS with all enhancements
313
- - ✅ **ui-auth**: Authentication-focused template with testing
314
- - ✅ **ui-only**: Clean UI template with development tools
315
- - **base**: Foundation template with core enhancements
13
+ - CLI scaffolding tool for creating SaaS applications
14
+ - Next.js 15+ and React Native/Expo templates
15
+ - Supabase and Firebase authentication templates
16
+ - Platform-core integration templates
17
+ - TypeScript-first configuration
18
+ - Interactive project setup wizard
19
+ - RAG-powered AI templates
20
+ - Mobile-first responsive templates
21
+ - Theme system with light/dark/system support
316
22
 
317
- ## 1.4.0
23
+ ---
318
24
 
319
- ### 🎨 Theme System Implementation
25
+ ## Previous Version History
320
26
 
321
- #### ✨ Theme Features
27
+ <details>
28
+ <summary>View previous changelog (1.21.0 and earlier)</summary>
322
29
 
323
- - **Theme Colors**: 6 customizable theme colors (Blue, Green, Purple, Orange, Red, Slate)
324
- - **Theme Modes**: Light/Dark/System theme support with persistence
325
- - **CLI Options**: `--theme-color` and `--default-theme` command line options
326
- - **Version Tracking**: Generator and package version tracking in generated projects
30
+ ### 1.21.0 and earlier
327
31
 
328
- ## 1.1.0
32
+ All previous versions were released from individual package repositories.
33
+ The version numbering has been reset to 1.0.0 for the unified monorepo release.
329
34
 
330
- ### Minor Changes
35
+ Key features from previous versions:
36
+ - Complete template system (web and mobile)
37
+ - Payment and authentication integrations
38
+ - AI and RAG templates
39
+ - Mobile-first optimizations
40
+ - Theme system with color customization
331
41
 
332
- - retrigger release
42
+ </details>