Windows setup builder and tooling
Installation
$ npm install --save win-exe
Usage
const exe = require('win-exe');
exe({
scripts: ['path/to/iss', 'other/path/to/iss'] // absolute or relative to cwd
});
// or when signing
exe({
pfx: 'path/to/pfx' // absolute or relative to cwd
name: 'signtool',
scripts: ['path/to/iss', 'other/path/to/iss'] // absolute or relative to cwd
});