GithubHelp home page GithubHelp logo

gulp-inno's Introduction

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'],
    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.

gulp-inno's People

Contributors

dustinblackman avatar sebtoun avatar vidhu avatar iofjuupasli avatar

Stargazers

YangYuelong avatar cwthorpe avatar  avatar ??? avatar Davide Barranca avatar lihang avatar  avatar  avatar Oleh Aleinyk avatar  avatar codeskyblue avatar

Watchers

James Cloos avatar  avatar  avatar

gulp-inno's Issues

Add iscc command line options support

Inno Setup command line compiler has some useful options, signing tools for example.
Please add support for those options, using optional config object. You already have unused argument opts in your export function.
It may be used somewhat like
opts = opts || {}; and args = [opts.compilerOptions, script_path]; in index.js
somewhat like
.pipe(inno({compilerOptions: '/SkSign=' + signPath + ' /f ' + certificatePath + ' /p yourpfxpass $p'})) in gulpfile.js
and
SignTool=kSign /d $qYOUR_DESCRIPTION$q /du $qhttp://www.example.com$q $f in [Setup] section of install.iss
index.txt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.