Untracked files
Dependencies
- [2]
BIEL6Z5JUpdate resource groups to use custom interface - [3]
YUVLBWV3Populate resource groups for unrecorded and untracked changes - [*]
ZGMIJNFVCreate pijul.ts for executing commands using the Pijul CLI
Change contents
- replacement in src/pijul.ts at line 260
// TODO: Easy optimization hereconst trackedFiles = await this.getTrackedFiles();const allFiles = await this.getNotIgnoredFiles();return allFiles.filter(f => !trackedFiles.some(t => t.path === f.path)).map(f => new Resource(f, ResourceStatus.Untracked));const output = (await this.pijul.exec(this.repositoryRoot, ['diff', '--json', "--untracked"])).stdout;return JSON.parse(output);