File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to ** create-servest** will be documented here.
44
5+ ## [ 1.1.0] – 2025-08-25
6+ ### Fixed
7+ - Bug where ` --template ` argument was ignored in some package managers (npm works consistently now)
8+ - Minor fixes and cleanup in scaffolding logic
9+
10+ ---
11+
512## [ 1.0.0] – 2025-08-25
613### Added
714- Stable 1.0.0 release of ** creative-servest** — production-ready
Original file line number Diff line number Diff line change @@ -54,9 +54,6 @@ async function init() {
5454 const argOverwrite = argv . overwrite ;
5555 const addonsArg = argv . a || argv . addons ;
5656
57- console . log ( 'argv:' , argv ) ;
58- console . log ( 'argvTemplate' , argTemplate ) ;
59-
6057 const help = argv . help || argv . h ;
6158 if ( help ) {
6259 console . log ( helpMessage ) ;
@@ -172,15 +169,11 @@ async function init() {
172169 }
173170
174171 // 5️⃣ Running custom command if exists
175- console . log ( pkgInfo ) ;
176-
177172 const pkgManager = pkgInfo ? pkgInfo . name : detectPkgManager ( ) ;
178173
179174 const { customCommand } =
180175 FRAMEWORKS . flatMap ( ( f ) => f . variants ) . find ( ( v ) => v . value === template ) ?? { } ;
181176
182- console . log ( customCommand ) ;
183-
184177 if ( customCommand ) {
185178 const fullCustomCommand = getFullCustomCommand ( customCommand , pkgInfo ) ;
186179
@@ -249,6 +242,5 @@ async function init() {
249242
250243// ───── INIT ─────
251244init ( ) . catch ( ( err ) => {
252- console . error ( err ) ;
253- process . exit ( 1 ) ;
245+ cancelOperation ( red ( err ) ) ;
254246} ) ;
You can’t perform that action at this time.
0 commit comments