burnrate 0.1.1 → 0.1.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.
- package/dist/cli/index.js +2 -0
- package/dist/cli/setup.js +5 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
*/
|
|
7
7
|
// Route 'setup' command to the setup script before loading heavy dependencies
|
|
8
8
|
if (process.argv[2] === 'setup') {
|
|
9
|
+
// setup.ts uses top-level await, so this import won't resolve
|
|
10
|
+
// until the entire setup wizard completes
|
|
9
11
|
await import('./setup.js');
|
|
10
12
|
process.exit(0);
|
|
11
13
|
}
|
package/dist/cli/setup.js
CHANGED