@dxtmisha/scripts 0.5.20 → 0.5.21

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@dxtmisha/scripts",
3
3
  "private": false,
4
- "version": "0.5.20",
4
+ "version": "0.5.21",
5
5
  "type": "module",
6
6
  "description": "Development scripts and CLI tools for DXT UI projects - automated component generation, library building and project management tools",
7
7
  "keywords": [
@@ -60,7 +60,9 @@ export class GitRead {
60
60
  return forEach(
61
61
  this.getFilesPorcelain(),
62
62
  (file) => {
63
- const data = file.split(' ', 2)
63
+ const data = file
64
+ .replace(/ {2,}/, ' ')
65
+ .split(' ', 2)
64
66
 
65
67
  const status = data[0] as GitStatus
66
68
  const path: string = data[1] ?? ''