我正在Windows中进行一些部署测试,我正在使用“electron-windows-installer”软件包从我的电子应用程序创建一个Windows安装程序。
我把它作为一项任务。
'use strict';
var gulp = require('gulp');
var winInstaller = require('electron-windows-installer');
gulp.task('create-windows-installer', function(done) {
winInstaller({
appDirectory: 'build/myApp',
outputDirectory: 'build/release',
iconUrl: 'URIToIcon',
exe: 'myApp.exe',
title: 'myApp',
setupExe: 'myApp.exe',
setpMsi: 'myApp.msi',
setupIcon: 'pathToIcon',
loadingGif: 'pathToGif',
arch: 'ia32'
}).then(done).catch(done);
});
我的package.json有以下命令从npm
运行它 "installer": "gulp windows-installer"
当我执行npm运行安装程序时,一切正常,但创建此安装程序的执行时间约为1小时10分钟。我的项目中有52个依赖项,最终的可执行文件大约为200MB。我想知道这个过程花了这么长时间或者我的代码中有什么不好是正常的。
非常感谢。
答案 0 :(得分:0)
由于文件夹/文件缓存到新版本,该过程耗时太长。 只需清理outputDirectory(如果需要,可以使用appDirectory),然后重新构建,你就可以了。