the-frame-ai 0.10.7 → 0.10.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/package.json +1 -1
  2. package/src/update.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "the-frame-ai",
3
- "version": "0.10.7",
3
+ "version": "0.10.8",
4
4
  "description": "FRAME — Framework for AI-Assisted Solo Development",
5
5
  "type": "module",
6
6
  "bin": {
package/src/update.js CHANGED
@@ -19,7 +19,6 @@ export async function update(target, flags = {}) {
19
19
  }
20
20
 
21
21
  const config = JSON.parse(readFileSync(join(target, '.frame', 'config.json'), 'utf-8'));
22
- console.log(`[DBG] frontend=${JSON.stringify(config.frontend)} isTTY=${process.stdin.isTTY} yes=${flags.yes}`);
23
22
  const vars = { PROJECT_NAME: config.project ?? '', LANGUAGE: config.language ?? '' };
24
23
  const qualityVars = Object.fromEntries(
25
24
  Object.entries(config.quality?.commands ?? {}).map(([k, v]) => [`quality.commands.${k}`, v])