create-laju-app
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -67,3 +67,4 @@ #!/usr/bin/env node | ||
console.log('📝 Copying environment file...'); | ||
execSync('cp .env.example .env', { stdio: 'inherit' }); | ||
execSync(process.platform === 'win32' ? 'copy .env.example .env' : 'cp .env.example .env', { stdio: 'inherit' }); | ||
console.log('🔄 Running migrations...'); | ||
@@ -70,0 +71,0 @@ execSync('npx knex migrate:latest', { stdio: 'inherit' }); |
{ | ||
"name": "create-laju-app", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "laju", |
11190