@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.
Files changed (2) hide show
  1. package/cli.js +1 -0
  2. 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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hopla/claude-setup",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "Hopla team agentic coding system for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {