@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.
Files changed (2) hide show
  1. package/bin/tfcode.js +3 -3
  2. 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 } = require('child_process');
452
- const { existsSync } = require('fs');
453
- const { join } = require('path');
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 = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toothfairyai/tfcode",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.8",
4
4
  "description": "ToothFairyAI's official AI coding agent",
5
5
  "keywords": ["toothfairyai", "ai", "coding", "cli"],
6
6
  "author": "ToothFairyAI",