-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_installer.js
39 lines (32 loc) · 1.13 KB
/
build_installer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ./build_installer.js
// 1. Import Modules
const { MSICreator } = require('electron-wix-msi');
const path = require('path');
// 2. Define input and output directory.
// Important: the directories must be absolute, not relative e.g
// appDirectory: "C:\\Users\sdkca\Desktop\SeyanatApplication-win32-x64",
const APP_DIR = path.resolve(__dirname, './release-builds/seyanat-application-win32-ia32');
// outputDirectory: "C:\\Users\sdkca\Desktop\windows_installer",
const OUT_DIR = path.resolve(__dirname, './windows_installer');
// 3. Instantiate the MSICreator
const msiCreator = new MSICreator({
appDirectory: APP_DIR,
outputDirectory: OUT_DIR,
// Configure metadata
description: 'This is a financial application created for seyanat law firm',
exe: 'seyanat-application',
name: 'Seyant Law Firm',
manufacturer: 'Abdul Qahar',
version: '1.0.0',
// Configure installer User Interface
ui: {
chooseDirectory: true
},
});
// 4. Create a .wxs template file
msiCreator.create().then(function(){
// Step 5: Compile the template to a .msi file
msiCreator.compile();
},err=>{
console.log(err);
});