node_modules缩小代码和Electron-packager

时间:2017-07-14 12:59:47

标签: electron minify node-modules electron-packager

我可以在async getCountry(id: number){ this.country = new Country(); try { let data = await this._countryService.getCountry(id); this.country.name = data.name; this.country.id = data.id; console.log('getCountry method') this.setForm(); } catch (error) { alert(error) } } 模块(不是全部)中看到哪些模块可以获得正常的my myproject\node_modules代码和.js版本: 例如.min.js 运行打包器后,我在jsonpath文件夹中获得了相同的两个文件。 所以我的问题是:无论如何都要对包装商(或者我可以在包装前运行的其他工具)说,只保留缩小(或原始)(如果两者都存在)

我发现保留这两个版本并不是那么好,最后安装的软件包比它应该没有的大......

0 个答案:

没有答案