@toothfairyai/tfcode 1.0.0-beta.7 → 1.0.0-beta.8
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/bin/tfcode.js +3 -3
- package/package.json +1 -1
package/bin/tfcode.js
CHANGED
|
@@ -448,9 +448,9 @@ const cli = yargs(hideBin(process.argv))
|
|
|
448
448
|
describe: 'start tfcode TUI',
|
|
449
449
|
handler: async () => {
|
|
450
450
|
// Try to run the full TUI
|
|
451
|
-
const { spawn } =
|
|
452
|
-
const { existsSync } =
|
|
453
|
-
const { join } =
|
|
451
|
+
const { spawn } = await import('child_process');
|
|
452
|
+
const { existsSync } = await import('fs');
|
|
453
|
+
const { join } = await import('path');
|
|
454
454
|
|
|
455
455
|
// Check if we're in the source repo
|
|
456
456
|
const possiblePaths = [
|