RajKumarPandey / gulp-inno

Compile Inno Setup scripts using Gulp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-inno

Compile a windows installer using Inno Setup Compiler and Gulp.

Install:

npm install --save-dev gulp-inno

Example:

Pass your inno script in gulp src and pipe it to Inno.

var gulp = require('gulp');
var inno = require('gulp-inno');
gulp.src('./installer_script.iss')
  .pipe(inno({
    args: ['arg1', 'args2', 'arg3']
  }));

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.

About

Compile Inno Setup scripts using Gulp

License:MIT License


Languages

Language:HTML 70.9%Language:Inno Setup 26.9%Language:JavaScript 2.2%