Merge pull request #202 from dolanmiu/feat/correct-mine-type

Remove async await for Compiler.compile
This commit is contained in:
Dolan
2019-01-03 10:45:56 +00:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ export class Compiler {
this.imageReplacer = new ImageReplacer();
}
public async compile(file: File): Promise<JSZip> {
public compile(file: File): JSZip {
const zip = new JSZip();
const xmlifiedFileMapping = this.xmlifyFile(file);