vibe-forge 0.3.3 → 0.3.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/bin/cli.js +7 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -228,13 +228,18 @@ async function updateCommand() {
228
228
  logInfo('Updating Vibe Forge...');
229
229
 
230
230
  try {
231
- execSync('git pull --rebase', {
231
+ // Fetch and reset to origin/main - works even without tracking branch
232
+ execSync('git fetch origin', {
233
+ stdio: 'inherit',
234
+ cwd: targetDir,
235
+ });
236
+ execSync('git reset --hard origin/main', {
232
237
  stdio: 'inherit',
233
238
  cwd: targetDir,
234
239
  });
235
240
  logSuccess('Update complete');
236
241
  } catch {
237
- logError('Failed to update. You may need to resolve git conflicts.');
242
+ logError('Failed to update. Check your network connection or try deleting _vibe-forge and running init again.');
238
243
  process.exit(1);
239
244
  }
240
245
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-forge",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Multi-agent development orchestration system for terminal-native vibe coding",
5
5
  "keywords": [
6
6
  "vibe-coding",