vibecodingmachine-cli 1.0.24 → 2025.11.2-7.17
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/vibecodingmachine.js +2 -2
- package/package.json +1 -1
package/bin/vibecodingmachine.js
CHANGED
|
@@ -225,8 +225,8 @@ process.on('unhandledRejection', (error) => {
|
|
|
225
225
|
// Check for updates and display notification
|
|
226
226
|
async function checkForUpdates() {
|
|
227
227
|
try {
|
|
228
|
-
const {
|
|
229
|
-
const updateInfo = await
|
|
228
|
+
const { checkForCLIUpdates } = require('@vibecodingmachine/core');
|
|
229
|
+
const updateInfo = await checkForCLIUpdates(packageJson.version);
|
|
230
230
|
|
|
231
231
|
if (updateInfo.hasUpdate) {
|
|
232
232
|
// Store update info globally for when auto mode starts
|