-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_installer.js
36 lines (31 loc) · 1.05 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
// ./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\OurCodeWorld-win32-x64",
const APP_DIR = path.resolve(__dirname, "./ElectroConverter-win32-x64");
// 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: "Apllication for common mathematical conversions",
exe: "Electro",
name: "Electro Converter",
manufacturer: "Amit Gujar",
version: "1.0.0",
publisher: "Amit Gujar",
// 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();
});