@adlas/create-app 1.0.48 → 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.
|
|
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
|
|
|
@@ -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(
|
|
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
|
-
**
|
|
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,21 @@ pnpm build
|
|
|
290
311
|
|
|
291
312
|
## Project History (Recent Changes)
|
|
292
313
|
|
|
293
|
-
### v1.0.
|
|
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
|
|
294
329
|
- **Removed documentation files from init**: No longer generates ARCHITECTURE_PATTERNS.md, AI_QUICK_REFERENCE.md, UI_COMPONENTS_GUIDE.md, IMPLEMENTATION_GUIDE.md
|
|
295
330
|
- **Simplified documentation**: Projects now only get PROJECT_OVERVIEW.md, FIGMA_TO_CODE_GUIDE.md, and DOCUMENTATION_INDEX.md
|
|
296
331
|
- **Updated FIGMA_TO_CODE_GUIDE.md**: Added comprehensive guidelines for icons, logos, images, Tailwind classes, component configuration, and data mapping
|
|
@@ -455,5 +490,5 @@ This series of releases focused on ensuring generated projects pass all quality
|
|
|
455
490
|
|
|
456
491
|
---
|
|
457
492
|
|
|
458
|
-
**Last Updated**: December 24, 2025 (v1.0.
|
|
493
|
+
**Last Updated**: December 24, 2025 (v1.0.48)
|
|
459
494
|
**Documentation Created For**: Claude AI continuation in different account
|