Used my updated typings for archiver 1.3

This commit is contained in:
Dolan
2017-05-09 18:03:31 +01:00
parent 8876bb1fea
commit 2ec171d4a8
4 changed files with 6 additions and 7 deletions

View File

@ -16,6 +16,6 @@ export class LocalPacker extends Packer {
public pack(path: string): void {
path = path.replace(/.docx$/, "");
this.stream = fs.createWriteStream(`${path}.docx`);
super.pack(this.stream);
super.compile(this.stream);
}
}