@adlas/create-app 1.0.47 → 1.0.49

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.
@@ -3,7 +3,7 @@
3
3
  ## Project Overview
4
4
 
5
5
  **Package Name**: `@adlas/create-app`
6
- **Current Version**: `1.0.41`
6
+ **Current Version**: `1.0.48`
7
7
  **NPM Registry**: https://www.npmjs.com/package/@adlas/create-app
8
8
  **Type**: CLI Tool for scaffolding Next.js projects with HeroUI, Tailwind CSS 4, and TypeScript
9
9
 
@@ -51,7 +51,7 @@ cli-tool/
51
51
  │ │ ├── next.config.ts
52
52
  │ │ ├── tsconfig.json
53
53
  │ │ └── ... (other config files)
54
- │ └── docs/ # Documentation (CURRENTLY EMPTY)
54
+ │ └── docs/ # Documentation templates
55
55
  ├── package.json
56
56
  ├── tsconfig.json
57
57
  └── README.md
@@ -92,10 +92,31 @@ Custom breakpoints based on real device sizes:
92
92
  Located in `templates/boilerplate/styles/hero.ts`:
93
93
 
94
94
  ```typescript
95
- export default heroui(); // Minimal config, uses HeroUI defaults
95
+ export default heroui({
96
+ themes: {
97
+ light: {
98
+ colors: {
99
+ primary: {
100
+ DEFAULT: '#25C780',
101
+ 50: '#E6FFF0',
102
+ 100: '#CBFFE0',
103
+ 200: '#AEFFD1',
104
+ 300: '#8EFFC2',
105
+ 400: '#66FFB2',
106
+ 500: '#19FFA3',
107
+ 600: '#25C780',
108
+ 700: '#26915F',
109
+ 800: '#215F40',
110
+ 900: '#173123',
111
+ },
112
+ },
113
+ },
114
+ },
115
+ });
96
116
  ```
97
117
 
98
- **Note**: The theme file was recently simplified. If you need custom colors, refer to the berndorf project at `/Users/amir/Desktop/Projects/adlas/berndorf/src/styles/hero.ts` for a complete example with all color definitions.
118
+ **Primary Color Palette**: Complete primary color scale from 50 (lightest) to 900 (darkest), with DEFAULT set to #25C780 (same as 600).
119
+ **Usage**: Can reference colors as `bg-primary`, `bg-primary-50`, `bg-primary-600`, etc. in Tailwind classes.
99
120
 
100
121
  ### 4. Dependencies Management
101
122
  **Critical Change**: Automatic `pnpm install` is **DISABLED**.
@@ -290,7 +311,28 @@ pnpm build
290
311
 
291
312
  ## Project History (Recent Changes)
292
313
 
293
- ### v1.0.41 (Latest)
314
+ ### v1.0.48 (Latest)
315
+ - **Updated hero.ts**: Added complete primary color palette (50-900 shades) with DEFAULT set to #25C780
316
+ - **Massively expanded FIGMA_TO_CODE_GUIDE.md**:
317
+ - Added Figma MCP Server Integration section (prerequisites, setup, workflow)
318
+ - Added Color Palette & Theme section with primary color usage examples
319
+ - Added Navigation Components section with HeroUI Navbar implementation
320
+ - Expanded Icons section with Icon component pattern (`<Icon name="IconName" />`)
321
+ - Expanded Logos & Images section with centralized image constants workflow
322
+ - Added "Check Before Export" workflow to prevent duplicate images
323
+ - Updated Component Configuration section with `defaultVariants` pattern
324
+ - Expanded DO/DON'T rules (26 DON'T items, 36 DO items)
325
+ - Added comprehensive Quick Reference Guide with all patterns
326
+ - All examples updated to use new patterns (Icon component, IMAGES constants, theme colors)
327
+
328
+ ### v1.0.47
329
+ - **Removed documentation files from init**: No longer generates ARCHITECTURE_PATTERNS.md, AI_QUICK_REFERENCE.md, UI_COMPONENTS_GUIDE.md, IMPLEMENTATION_GUIDE.md
330
+ - **Simplified documentation**: Projects now only get PROJECT_OVERVIEW.md, FIGMA_TO_CODE_GUIDE.md, and DOCUMENTATION_INDEX.md
331
+ - **Updated FIGMA_TO_CODE_GUIDE.md**: Added comprehensive guidelines for icons, logos, images, Tailwind classes, component configuration, and data mapping
332
+ - **Updated update command**: Only updates FIGMA_TO_CODE_GUIDE.md (removed other docs from update list)
333
+ - **Updated project detection**: Changed from checking ARCHITECTURE_PATTERNS.md to PROJECT_OVERVIEW.md
334
+
335
+ ### v1.0.41
294
336
  - **CRITICAL FIX**: Fixed import spacing in generated `next.config.ts`
295
337
  - **CRITICAL FIX**: Fixed `import type` usage in generated `next-pwa.d.ts`
296
338
  - Generated projects now pass `pnpm lint` and `pnpm check:types` without errors
@@ -448,5 +490,5 @@ This series of releases focused on ensuring generated projects pass all quality
448
490
 
449
491
  ---
450
492
 
451
- **Last Updated**: December 23, 2025 (v1.0.41)
493
+ **Last Updated**: December 24, 2025 (v1.0.48)
452
494
  **Documentation Created For**: Claude AI continuation in different account