Enable support for experimental decorators
[?]
Dec 24, 2020, 8:14 PM
LUFSQKUVVHACWQA5Z5OJJDRFZKWILKGB5COOWDLWAU4N6DX5VYSACDependencies
- [2]
YUVLBWV3Populate resource groups for unrecorded and untracked changes - [3]
QGP57DI2Fix handling of empty json diff - [4]
B4SKYP3YAdd repository model and add steps to initialize it - [5]
ZGMIJNFVCreate pijul.ts for executing commands using the Pijul CLI - [*]
NCBEWRYEInitialize Repository
Change contents
- edit in tsconfig.json at line 9[7.104500][7.104500]
"experimentalDecorators": true, - replacement in src/repository.ts at line 9
private readonly unrecordedChangesGroup: SourceControlResourceGroup;private readonly changedGroup: SourceControlResourceGroup; - replacement in src/repository.ts at line 26
this.unrecordedChangesGroup = this.sourceControl.createResourceGroup('unrecordedChanges', 'Unrecorded Changes');this.changedGroup = this.sourceControl.createResourceGroup('changed', 'Unrecorded Changes'); - replacement in src/repository.ts at line 28
this.disposables.push(this.unrecordedChangesGroup);this.disposables.push(this.changedGroup); - replacement in src/repository.ts at line 47
this.unrecordedChangesGroup.resourceStates = (await this.repository.getChangedFiles()).map(u => ({ resourceUri: u }));this.changedGroup.resourceStates = (await this.repository.getChangedFiles()).map(u => ({ resourceUri: u })); - replacement in src/pijul.ts at line 204
* Get the list of file URIs which have unrecorded changes* Get the list of file URIs which have unrecorded changes using `pijul diff`