start-vibing-stacks 1.8.0 → 1.8.1
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/dist/index.js +0 -2
- package/dist/ui.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -57,8 +57,6 @@ const AVAILABLE_STACKS = [
|
|
|
57
57
|
{ id: 'php', name: 'PHP 8.3+', icon: '🐘', available: true },
|
|
58
58
|
{ id: 'nodejs', name: 'Node.js / TypeScript', icon: '📦', available: true },
|
|
59
59
|
{ id: 'python', name: 'Python 3.12+', icon: '🐍', available: true },
|
|
60
|
-
{ id: 'rust', name: 'Rust', icon: '🦀', available: false },
|
|
61
|
-
{ id: 'go', name: 'Go', icon: '🐹', available: false },
|
|
62
60
|
];
|
|
63
61
|
// =============================================================================
|
|
64
62
|
// Main Flow
|
package/dist/ui.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Start Vibing Stacks — Terminal UI
|
|
3
3
|
*/
|
|
4
4
|
import chalk from 'chalk';
|
|
5
|
-
const VERSION = '1.8.
|
|
5
|
+
const VERSION = '1.8.1';
|
|
6
6
|
const gradient = (text) => {
|
|
7
7
|
const colors = [chalk.hex('#FF6B6B'), chalk.hex('#FF8E53'), chalk.hex('#FFBD2E'), chalk.hex('#48BB78'), chalk.hex('#4299E1'), chalk.hex('#9F7AEA')];
|
|
8
8
|
return text.split('').map((c, i) => colors[i % colors.length](c)).join('');
|