@aabuhijleh/gulp-inno

Compile Inno Setup scripts using Gulp

Usage no npm install needed!

<script type="module">
  import aabuhijlehGulpInno from 'https://cdn.skypack.dev/@aabuhijleh/gulp-inno';
</script>

README

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.