@88code/byebyecode 1.1.2 → 1.1.4
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/package.json +6 -6
- package/scripts/postinstall.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@88code/byebyecode",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "CCometixLine - High-performance Claude Code StatusLine tool",
|
|
5
5
|
"bin": {
|
|
6
6
|
"byebyecode": "./bin/byebyecode.js"
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"postinstall": "node scripts/postinstall.js"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"@88code/byebyecode-darwin-x64": "1.1.
|
|
13
|
-
"@88code/byebyecode-darwin-arm64": "1.1.
|
|
14
|
-
"@88code/byebyecode-linux-x64": "1.1.
|
|
15
|
-
"@88code/byebyecode-linux-x64-musl": "1.1.
|
|
16
|
-
"@88code/byebyecode-win32-x64": "1.1.
|
|
12
|
+
"@88code/byebyecode-darwin-x64": "1.1.4",
|
|
13
|
+
"@88code/byebyecode-darwin-arm64": "1.1.4",
|
|
14
|
+
"@88code/byebyecode-linux-x64": "1.1.4",
|
|
15
|
+
"@88code/byebyecode-linux-x64-musl": "1.1.4",
|
|
16
|
+
"@88code/byebyecode-win32-x64": "1.1.4"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
package/scripts/postinstall.js
CHANGED
|
@@ -14,7 +14,7 @@ try {
|
|
|
14
14
|
const platform = process.platform;
|
|
15
15
|
const arch = process.arch;
|
|
16
16
|
const homeDir = os.homedir();
|
|
17
|
-
const claudeDir = path.join(homeDir, '.claude', '
|
|
17
|
+
const claudeDir = path.join(homeDir, '.claude', '88code');
|
|
18
18
|
|
|
19
19
|
// Create directory
|
|
20
20
|
fs.mkdirSync(claudeDir, { recursive: true });
|
|
@@ -123,7 +123,7 @@ try {
|
|
|
123
123
|
if (!sourcePath) {
|
|
124
124
|
if (!silent) {
|
|
125
125
|
console.log('Binary package not installed, skipping Claude Code setup');
|
|
126
|
-
console.log('The global
|
|
126
|
+
console.log('The global byebyecode command will still work via npm');
|
|
127
127
|
}
|
|
128
128
|
process.exit(0);
|
|
129
129
|
}
|
|
@@ -148,13 +148,13 @@ try {
|
|
|
148
148
|
if (!silent) {
|
|
149
149
|
console.log('✨ CCometixLine is ready for Claude Code!');
|
|
150
150
|
console.log(`📍 Location: ${targetPath}`);
|
|
151
|
-
console.log('🎉 You can now use:
|
|
151
|
+
console.log('🎉 You can now use: byebyecode --help');
|
|
152
152
|
}
|
|
153
153
|
} catch (error) {
|
|
154
154
|
// Silent failure - don't break installation
|
|
155
155
|
if (!silent) {
|
|
156
156
|
console.log('Note: Could not auto-configure for Claude Code');
|
|
157
|
-
console.log('The global
|
|
157
|
+
console.log('The global byebyecode command will still work.');
|
|
158
158
|
console.log('You can manually copy ccline to ~/.claude/ccline/ if needed');
|
|
159
159
|
}
|
|
160
160
|
}
|