-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_installer.js
37 lines (30 loc) · 1019 Bytes
/
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
// ./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, '.');
// 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: 'Vos alertes GLPI !',
exe: 'TicketGLPI',
name: 'Tickets GLPI',
manufacturer: 'MartinD',
version: '1.1.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();
});