claude-yolo 1.6.1 → 1.6.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/bin/claude-yolo.js +4 -0
- package/package.json +3 -2
package/bin/claude-yolo.js
CHANGED
|
@@ -159,6 +159,10 @@ async function run() {
|
|
|
159
159
|
// Read the original CLI file content
|
|
160
160
|
let cliContent = fs.readFileSync(originalCliPath, 'utf8');
|
|
161
161
|
|
|
162
|
+
// Replace all instances of "punycode" with "punycode/"
|
|
163
|
+
cliContent = cliContent.replace(/"punycode"/g, '"punycode/"');
|
|
164
|
+
debug('Replaced all instances of "punycode" with "punycode/"');
|
|
165
|
+
|
|
162
166
|
// Replace getIsDocker() calls with true
|
|
163
167
|
cliContent = cliContent.replace(/[a-zA-Z0-9_]*\.getIsDocker\(\)/g, 'true');
|
|
164
168
|
debug("Replaced all instances of *.getIsDocker() with true");
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-yolo",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "YOLO wrapper for Claude CLI with danger mode always enabled, auto-updates, and colorful loading messages",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-yolo": "./bin/claude-yolo.js"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@anthropic-ai/claude-code": "0.2.14"
|
|
9
|
+
"@anthropic-ai/claude-code": "0.2.14",
|
|
10
|
+
"punycode": "latest"
|
|
10
11
|
},
|
|
11
12
|
"type": "module",
|
|
12
13
|
"scripts": {
|