fix: plugin dependencies not enabling (#150)
This commit is contained in:
parent
ff9d904fcb
commit
ffbb52512c
3 changed files with 114 additions and 18 deletions
|
|
@ -32,6 +32,14 @@ export class ChangeList<T>{
|
|||
this.set.add(item);
|
||||
}
|
||||
|
||||
public add(item: T) {
|
||||
return this.set.add(item);
|
||||
}
|
||||
|
||||
public remove(item: T) {
|
||||
return this.set.delete(item);
|
||||
}
|
||||
|
||||
public getChanges() {
|
||||
return this.set.values();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue