rampup 0.1.12 → 0.1.13
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/index.js +10 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -28,7 +28,7 @@ const execAsync = promisify(exec);
|
|
|
28
28
|
const __filename = fileURLToPath(import.meta.url);
|
|
29
29
|
const __dirname = path.dirname(__filename);
|
|
30
30
|
|
|
31
|
-
const VERSION = '0.1.
|
|
31
|
+
const VERSION = '0.1.13';
|
|
32
32
|
const PACKAGE_NAME = 'rampup';
|
|
33
33
|
|
|
34
34
|
// Check for updates and auto-update if available
|
|
@@ -69,6 +69,15 @@ async function checkForUpdates() {
|
|
|
69
69
|
// Run update check in background (non-blocking)
|
|
70
70
|
checkForUpdates();
|
|
71
71
|
|
|
72
|
+
// Show deprecation notice
|
|
73
|
+
console.log(chalk.yellow('\n⚠️ The Ramp CLI is being deprecated.'));
|
|
74
|
+
console.log(chalk.white(' For the best experience, use the web app at:'));
|
|
75
|
+
console.log(chalk.cyan(' https://app.rampup.dev/codebase/view\n'));
|
|
76
|
+
console.log(chalk.dim(' The web app offers:'));
|
|
77
|
+
console.log(chalk.dim(' • Voice chat with full code context visible'));
|
|
78
|
+
console.log(chalk.dim(' • Better file navigation and search'));
|
|
79
|
+
console.log(chalk.dim(' • Real-time code highlighting\n'));
|
|
80
|
+
|
|
72
81
|
// ASCII art banner
|
|
73
82
|
const banner = `
|
|
74
83
|
${chalk.white(' :::- ')}
|