bingocode 1.1.128 → 1.1.130

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.128",
3
+ "version": "1.1.130",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -32,7 +32,6 @@ const skills = fs.readdirSync(srcSkillsDir, { withFileTypes: true })
32
32
 
33
33
  for (const skill of skills) {
34
34
  const dst = path.join(dstSkillsDir, skill)
35
- if (fs.existsSync(dst)) continue // respect existing user version
36
35
 
37
36
  try {
38
37
  fs.mkdirSync(dst, { recursive: true })