UNPKG

i18n-language-xls

Version:

国际化词条转换

1 lines 529 B
const resolve=require("path")["resolve"],updateExcel=require("./update-excel"),updateLanguage=require("./update-language"),watchFs=require("../utils/method-fs")["watchFs"];class Language{constructor(e){this.options={...e,languageDir:resolve(e.languageDir),xlsPath:resolve(e.xlsPath)},this.options.watchUpdateXls&&this.watchExcel()}updateExcel(){updateExcel(this.options)}updateLanguage(){updateLanguage(this.options)}watchExcel(){const e=this;watchFs(this.options.xlsPath,function(){e.updateLanguage()})}}module.exports=Language;