bmad-viewer 0.3.2 → 0.3.3

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": "bmad-viewer",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Visual dashboard for BMAD (Boring Maintainable Agile Development) projects. Wiki browser + sprint status viewer with live reload.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,6 +27,7 @@
27
27
  "url": "https://github.com/CamiloValderramaGonzalez/bmad-viewer/issues"
28
28
  },
29
29
  "dependencies": {
30
+ "bmad-viewer": "^0.3.2",
30
31
  "chokidar": "^4.0.1",
31
32
  "fuse.js": "^7.0.0",
32
33
  "js-yaml": "^4.1.0",
@@ -585,7 +585,7 @@ function parseEpicsFromMarkdown(raw, storyContents) {
585
585
  */
586
586
  function parseEpicNamesFromComments(rawYaml) {
587
587
  const names = {};
588
- const regex = /#\s*Epic\s+(\d+):\s*(.+)/g;
588
+ const regex = /#\s*Epic\s+(\d+):\s*(.+)/gi;
589
589
  let match;
590
590
  while ((match = regex.exec(rawYaml)) !== null) {
591
591
  names[match[1]] = match[2].trim();