@aabuhijleh/gulp-inno 中文文档教程
gulp-inno
使用 Inno Setup Compiler 和 Gulp 编译 Windows 安装程序。 Inno Setup 版本:5.5.9 (Unicode)
Install:
npm install --save-dev @aabuhijleh/gulp-inno
Example:
在 gulp src 中传递您的 inno 脚本并将其通过管道传递给 Inno。
var gulp = require("gulp");
var inno = require("@aabuhijleh/gulp-inno");
gulp.src("./installer_script.iss").pipe(
inno({
args: ["arg1", "args2", "arg3"],
env: {
/* environment key-value pairs */
},
verbose: true
})
);
对于 OS X 用户:如果你得到 Failed to start Cocoa app main loop
,你需要将 wine 升级到最新的 devel
brew install wine --devel
TODO:
- Write proper Readme.
- Clean unneeded inno files.
gulp-inno
Compile a windows installer using Inno Setup Compiler and Gulp. Inno Setup Version: 5.5.9 (Unicode)
Install:
npm install --save-dev @aabuhijleh/gulp-inno
Example:
Pass your inno script in gulp src and pipe it to Inno.
var gulp = require("gulp");
var inno = require("@aabuhijleh/gulp-inno");
gulp.src("./installer_script.iss").pipe(
inno({
args: ["arg1", "args2", "arg3"],
env: {
/* environment key-value pairs */
},
verbose: true
})
);
For OS X Users: If you get Failed to start Cocoa app main loop
, you need to upgrade wine to the latest devel
brew install wine --devel
TODO:
- Write proper Readme.
- Clean unneeded inno files.