shiva-code 0.7.11 → 0.7.12
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 +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -143,6 +143,7 @@ import { homedir } from "os";
|
|
|
143
143
|
import { join } from "path";
|
|
144
144
|
import Conf from "conf";
|
|
145
145
|
import inquirer from "inquirer";
|
|
146
|
+
import chalk from "chalk";
|
|
146
147
|
var onboardingStore = new Conf({
|
|
147
148
|
projectName: "shiva-code",
|
|
148
149
|
configName: "onboarding",
|
|
@@ -231,8 +232,8 @@ async function selectTheme() {
|
|
|
231
232
|
log.newline();
|
|
232
233
|
console.log(colors.bold(" W\xE4hle ein Theme f\xFCr bessere Lesbarkeit:"));
|
|
233
234
|
log.newline();
|
|
234
|
-
console.log(" " +
|
|
235
|
-
console.log(" " +
|
|
235
|
+
console.log(" " + chalk.bgWhite.black(" Dark Mode ") + " F\xFCr dunkle Terminals (Standard)");
|
|
236
|
+
console.log(" " + chalk.bgBlack.white(" Light Mode ") + " F\xFCr helle Terminals");
|
|
236
237
|
log.newline();
|
|
237
238
|
const { theme } = await inquirer.prompt([
|
|
238
239
|
{
|
|
@@ -14523,7 +14524,7 @@ sandboxCommand.command("delete <id>").description("Sandbox l\xF6schen").option("
|
|
|
14523
14524
|
|
|
14524
14525
|
// src/index.ts
|
|
14525
14526
|
var program = new Command40();
|
|
14526
|
-
program.name("shiva").description("SHIVA Code - Control Station for Claude Code").version("0.7.
|
|
14527
|
+
program.name("shiva").description("SHIVA Code - Control Station for Claude Code").version("0.7.12").option("--debug", "Debug-Modus aktivieren").hook("preAction", (thisCommand) => {
|
|
14527
14528
|
const opts = thisCommand.opts();
|
|
14528
14529
|
if (opts.debug) {
|
|
14529
14530
|
enableDebug();
|