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.
Files changed (2) hide show
  1. package/index.js +10 -1
  2. 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.12';
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(' :::- ')}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rampup",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Ramp - Understand any codebase in hours. AI-powered developer onboarding CLI.",
5
5
  "type": "module",
6
6
  "bin": {