@tanagram/cli 0.5.22 → 0.5.24
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/npm/darwin-arm64/tanagram +0 -0
- package/dist/npm/darwin-x64/tanagram +0 -0
- package/dist/npm/linux-arm64/tanagram +0 -0
- package/dist/npm/linux-x64/tanagram +0 -0
- package/dist/npm/tanagram_0.5.24_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.24_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.24_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.24_linux_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.24_windows_amd64.zip +0 -0
- package/dist/npm/win32-x64/tanagram.exe +0 -0
- package/install.js +10 -1
- package/package.json +1 -1
- package/dist/npm/tanagram_0.5.22_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.22_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.22_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.22_linux_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.5.22_windows_amd64.zip +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/install.js
CHANGED
|
@@ -148,7 +148,7 @@ function installClaudeSkill() {
|
|
|
148
148
|
fs.mkdirSync(skillsTargetDir, { recursive: true });
|
|
149
149
|
|
|
150
150
|
// Copy skill files
|
|
151
|
-
const files = ['SKILL.md'
|
|
151
|
+
const files = ['SKILL.md'];
|
|
152
152
|
for (const file of files) {
|
|
153
153
|
const srcPath = path.join(skillsSourceDir, file);
|
|
154
154
|
const dstPath = path.join(skillsTargetDir, file);
|
|
@@ -157,6 +157,15 @@ function installClaudeSkill() {
|
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
+
// Clean up stale files from previous installs
|
|
161
|
+
const staleFiles = ['quick-reference.md'];
|
|
162
|
+
for (const file of staleFiles) {
|
|
163
|
+
const stalePath = path.join(skillsTargetDir, file);
|
|
164
|
+
if (fs.existsSync(stalePath)) {
|
|
165
|
+
fs.unlinkSync(stalePath);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
160
169
|
console.error(`✓ Tanagram skill installed to ${skillsTargetDir}`);
|
|
161
170
|
track('cli.skill.install.success', { first_time: isFirstTime });
|
|
162
171
|
} catch (err) {
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|