vibedino 0.1.2 → 0.1.3
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/cli.cjs +7 -7
- package/dist/cli.js +7 -7
- package/dist/main.cjs +7 -7
- package/dist/main.js +7 -7
- package/dist/postinstall.cjs +6 -6
- package/dist/postinstall.js +6 -6
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -1266,15 +1266,15 @@ var CLAUDE_COMMANDS_DIR = (0, import_path4.join)((0, import_os3.homedir)(), ".cl
|
|
|
1266
1266
|
var DINO_COMMAND_PATH = (0, import_path4.join)(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
1267
1267
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
1268
1268
|
|
|
1269
|
-
Launch
|
|
1269
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
1270
1270
|
|
|
1271
|
-
|
|
1271
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
1272
1272
|
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1273
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
1274
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
1275
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
1276
1276
|
|
|
1277
|
-
|
|
1277
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
1278
1278
|
`;
|
|
1279
1279
|
function installClaudeCommand() {
|
|
1280
1280
|
try {
|
|
@@ -1358,7 +1358,7 @@ async function cli(argv) {
|
|
|
1358
1358
|
process.exit(0);
|
|
1359
1359
|
}
|
|
1360
1360
|
if (args.version) {
|
|
1361
|
-
console.log("vibedino v0.1.
|
|
1361
|
+
console.log("vibedino v0.1.3");
|
|
1362
1362
|
process.exit(0);
|
|
1363
1363
|
}
|
|
1364
1364
|
if (args.scores) {
|
package/dist/cli.js
CHANGED
|
@@ -1240,15 +1240,15 @@ var CLAUDE_COMMANDS_DIR = join4(homedir3(), ".claude", "commands");
|
|
|
1240
1240
|
var DINO_COMMAND_PATH = join4(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
1241
1241
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
1242
1242
|
|
|
1243
|
-
Launch
|
|
1243
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
1244
1244
|
|
|
1245
|
-
|
|
1245
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
1246
1246
|
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1247
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
1248
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
1249
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
1250
1250
|
|
|
1251
|
-
|
|
1251
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
1252
1252
|
`;
|
|
1253
1253
|
function installClaudeCommand() {
|
|
1254
1254
|
try {
|
|
@@ -1332,7 +1332,7 @@ async function cli(argv) {
|
|
|
1332
1332
|
process.exit(0);
|
|
1333
1333
|
}
|
|
1334
1334
|
if (args.version) {
|
|
1335
|
-
console.log("vibedino v0.1.
|
|
1335
|
+
console.log("vibedino v0.1.3");
|
|
1336
1336
|
process.exit(0);
|
|
1337
1337
|
}
|
|
1338
1338
|
if (args.scores) {
|
package/dist/main.cjs
CHANGED
|
@@ -1242,15 +1242,15 @@ var CLAUDE_COMMANDS_DIR = (0, import_path4.join)((0, import_os3.homedir)(), ".cl
|
|
|
1242
1242
|
var DINO_COMMAND_PATH = (0, import_path4.join)(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
1243
1243
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
1244
1244
|
|
|
1245
|
-
Launch
|
|
1245
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
1246
1246
|
|
|
1247
|
-
|
|
1247
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
1248
1248
|
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1249
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
1250
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
1251
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
1252
1252
|
|
|
1253
|
-
|
|
1253
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
1254
1254
|
`;
|
|
1255
1255
|
function installClaudeCommand() {
|
|
1256
1256
|
try {
|
|
@@ -1334,7 +1334,7 @@ async function cli(argv) {
|
|
|
1334
1334
|
process.exit(0);
|
|
1335
1335
|
}
|
|
1336
1336
|
if (args.version) {
|
|
1337
|
-
console.log("vibedino v0.1.
|
|
1337
|
+
console.log("vibedino v0.1.3");
|
|
1338
1338
|
process.exit(0);
|
|
1339
1339
|
}
|
|
1340
1340
|
if (args.scores) {
|
package/dist/main.js
CHANGED
|
@@ -1240,15 +1240,15 @@ var CLAUDE_COMMANDS_DIR = join4(homedir3(), ".claude", "commands");
|
|
|
1240
1240
|
var DINO_COMMAND_PATH = join4(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
1241
1241
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
1242
1242
|
|
|
1243
|
-
Launch
|
|
1243
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
1244
1244
|
|
|
1245
|
-
|
|
1245
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
1246
1246
|
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1247
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
1248
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
1249
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
1250
1250
|
|
|
1251
|
-
|
|
1251
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
1252
1252
|
`;
|
|
1253
1253
|
function installClaudeCommand() {
|
|
1254
1254
|
try {
|
|
@@ -1332,7 +1332,7 @@ async function cli(argv) {
|
|
|
1332
1332
|
process.exit(0);
|
|
1333
1333
|
}
|
|
1334
1334
|
if (args.version) {
|
|
1335
|
-
console.log("vibedino v0.1.
|
|
1335
|
+
console.log("vibedino v0.1.3");
|
|
1336
1336
|
process.exit(0);
|
|
1337
1337
|
}
|
|
1338
1338
|
if (args.scores) {
|
package/dist/postinstall.cjs
CHANGED
|
@@ -86,15 +86,15 @@ var CLAUDE_COMMANDS_DIR = (0, import_path3.join)((0, import_os2.homedir)(), ".cl
|
|
|
86
86
|
var DINO_COMMAND_PATH = (0, import_path3.join)(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
87
87
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
88
88
|
|
|
89
|
-
Launch
|
|
89
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
92
92
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
94
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
95
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
98
98
|
`;
|
|
99
99
|
function installClaudeCommand() {
|
|
100
100
|
try {
|
package/dist/postinstall.js
CHANGED
|
@@ -84,15 +84,15 @@ var CLAUDE_COMMANDS_DIR = join3(homedir2(), ".claude", "commands");
|
|
|
84
84
|
var DINO_COMMAND_PATH = join3(CLAUDE_COMMANDS_DIR, "dino.md");
|
|
85
85
|
var DINO_COMMAND_CONTENT = `# /dino - Play VibeDino
|
|
86
86
|
|
|
87
|
-
Launch
|
|
87
|
+
Launch VibeDino in a **new terminal window** so it gets a real TTY with full keyboard and display support. Do not run it in the current shell subprocess.
|
|
88
88
|
|
|
89
|
-
|
|
89
|
+
Detect the OS via \`process.platform\` or the OSTYPE env, then run exactly one shell command \u2014 no explanation, no commentary:
|
|
90
90
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
91
|
+
- **Windows** (\`win32\`): \`start cmd /k vibedino --trigger claude\`
|
|
92
|
+
- **macOS** (\`darwin\`): \`osascript -e 'tell app "Terminal" to do script "vibedino --trigger claude"'\`
|
|
93
|
+
- **Linux**: \`x-terminal-emulator -e "vibedino --trigger claude" &\` (fallback: \`xterm -e "vibedino --trigger claude" &\`)
|
|
94
94
|
|
|
95
|
-
|
|
95
|
+
If \`vibedino\` is not found in PATH, use \`npx vibedino\` instead.
|
|
96
96
|
`;
|
|
97
97
|
function installClaudeCommand() {
|
|
98
98
|
try {
|