musubix2 0.5.33 → 0.5.34
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/.claude/.musubix-managed +1 -1
- package/dist/assets/skills-manifest.json +1 -1
- package/dist/cli.js +4 -2
- package/dist/index.js +4 -2
- package/package.json +1 -1
package/.claude/.musubix-managed
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generator":"musubix2","version":"0.5.
|
|
1
|
+
{"generator":"musubix2","version":"0.5.34","timestamp":"2026-07-09T22:41:04.058Z"}
|
package/dist/cli.js
CHANGED
|
@@ -7701,8 +7701,10 @@ var init_dist4 = __esm({
|
|
|
7701
7701
|
{ kind: "variable", regex: /(?:public|private|protected)\s+(?:static\s+)?(?:readonly\s+)?\w+\s+(\w+)\s*[=;{]/ }
|
|
7702
7702
|
],
|
|
7703
7703
|
ruby: [
|
|
7704
|
-
|
|
7705
|
-
|
|
7704
|
+
// Allow leading indentation so classes/modules nested in a module (the norm
|
|
7705
|
+
// in Rails-style code) are captured, not just top-level ones.
|
|
7706
|
+
{ kind: "class", regex: /^\s*class\s+(\w+)/ },
|
|
7707
|
+
{ kind: "module", regex: /^\s*module\s+(\w+)/ },
|
|
7706
7708
|
{ kind: "function", regex: /^\s*def\s+(?:self\.)?(\w+)/ },
|
|
7707
7709
|
{ kind: "import", regex: /require(?:_relative)?\s+['"](.[^'"]+)['"]/ },
|
|
7708
7710
|
{ kind: "variable", regex: /^\s*(\w+)\s*=/ }
|
package/dist/index.js
CHANGED
|
@@ -7701,8 +7701,10 @@ var init_dist4 = __esm({
|
|
|
7701
7701
|
{ kind: "variable", regex: /(?:public|private|protected)\s+(?:static\s+)?(?:readonly\s+)?\w+\s+(\w+)\s*[=;{]/ }
|
|
7702
7702
|
],
|
|
7703
7703
|
ruby: [
|
|
7704
|
-
|
|
7705
|
-
|
|
7704
|
+
// Allow leading indentation so classes/modules nested in a module (the norm
|
|
7705
|
+
// in Rails-style code) are captured, not just top-level ones.
|
|
7706
|
+
{ kind: "class", regex: /^\s*class\s+(\w+)/ },
|
|
7707
|
+
{ kind: "module", regex: /^\s*module\s+(\w+)/ },
|
|
7706
7708
|
{ kind: "function", regex: /^\s*def\s+(?:self\.)?(\w+)/ },
|
|
7707
7709
|
{ kind: "import", regex: /require(?:_relative)?\s+['"](.[^'"]+)['"]/ },
|
|
7708
7710
|
{ kind: "variable", regex: /^\s*(\w+)\s*=/ }
|