@aabuhijleh/gulp-inno 中文文档教程

发布于 5年前 浏览 19 项目主页 更新于 3年前

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.
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文