@vandeurenglenn/win-exe
v1.1.1
Published
Windows exe builder and setup tools
Downloads
21
Maintainers
Readme
win-exe

Windows setup builder and tooling
Installation
$ npm install --save win-exeUsage
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
});