the-frame-ai 0.10.3 → 0.10.4

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/package.json +1 -1
  2. package/src/languages.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "the-frame-ai",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "description": "FRAME — Framework for AI-Assisted Solo Development",
5
5
  "type": "module",
6
6
  "bin": {
package/src/languages.js CHANGED
@@ -142,7 +142,9 @@ export async function promptCopilot(yes = false) {
142
142
  }
143
143
 
144
144
  export async function promptFrontend(yes = false) {
145
- if (!process.stdin.isTTY || yes) return false;
145
+ if (yes) return false;
146
+ process.stderr.write(`[FRAME] promptFrontend called, isTTY=${process.stdin.isTTY}\n`);
147
+ if (!process.stdin.isTTY) return false;
146
148
  const rl = createInterface({ input: process.stdin, output: process.stdout });
147
149
  return new Promise((resolve) => {
148
150
  rl.question('\n? Is this a frontend project? Adds Playwright MCP for UI verification (y/N): ', (answer) => {