@hopla/claude-setup 1.8.1 → 1.8.2
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/cli.js +1 -0
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -180,6 +180,7 @@ async function install() {
|
|
|
180
180
|
// Determine which command files will be installed
|
|
181
181
|
const allCommandEntries = fs.readdirSync(path.join(FILES_DIR, "commands"));
|
|
182
182
|
const allCommandFiles = allCommandEntries.filter((f) => {
|
|
183
|
+
if (f.startsWith(".")) return false;
|
|
183
184
|
const stat = fs.statSync(path.join(FILES_DIR, "commands", f));
|
|
184
185
|
return stat.isFile();
|
|
185
186
|
});
|