there is no need for the settings.xml file anymore

This commit is contained in:
Sergio Mendonça
2018-09-17 22:09:05 -03:00
parent 146d0ad9e5
commit 0eb36be053
8 changed files with 4 additions and 239 deletions

View File

@ -23,7 +23,6 @@ interface IXmlifyedFileMapping {
ContentTypes: IXmlifyedFile;
AppProperties: IXmlifyedFile;
FootNotes: IXmlifyedFile;
Settings: IXmlifyedFile;
}
export class Compiler {
@ -121,10 +120,6 @@ export class Compiler {
data: xml(this.formatter.format(file.FootNotes)),
path: "word/footnotes.xml",
},
Settings: {
data: xml(this.formatter.format(file.Settings)),
path: "word/settings.xml",
},
};
}
}