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
- if (fs.existsSync(path.join(projectPath, 'bin'))) {
320
- fs.rmSync(path.join(projectPath, 'bin'), { recursive: true })
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))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tosijs-platform-app",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Create a full-stack web app with tosijs (front-end) and Firebase (back-end)",
5
5
  "type": "module",
6
6
  "bin": {