create-tosijs-platform-app 1.0.1 ā 1.0.3
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.
|
@@ -316,8 +316,9 @@ async function main() {
|
|
|
316
316
|
|
|
317
317
|
console.log('š§¹ Cleaning up...')
|
|
318
318
|
fs.rmSync(path.join(projectPath, '.git'), { recursive: true })
|
|
319
|
-
|
|
320
|
-
|
|
319
|
+
// Remove create-script directory (utility scripts are in scripts/)
|
|
320
|
+
if (fs.existsSync(path.join(projectPath, 'create-script'))) {
|
|
321
|
+
fs.rmSync(path.join(projectPath, 'create-script'), { recursive: true })
|
|
321
322
|
}
|
|
322
323
|
|
|
323
324
|
// Configure initial_state: update owner role with admin email
|
|
@@ -685,7 +686,8 @@ setup()
|
|
|
685
686
|
console.log(` node setup.js`)
|
|
686
687
|
|
|
687
688
|
console.log(`\n7. Start local development:`)
|
|
688
|
-
console.log(` bun start`)
|
|
689
|
+
console.log(` bun start # Uses production Firebase`)
|
|
690
|
+
console.log(` bun start-emulated # Uses local emulators`)
|
|
689
691
|
console.log(` Visit https://localhost:8020`)
|
|
690
692
|
|
|
691
693
|
console.log('\nā'.repeat(60))
|