mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
|
/* eslint import/no-dynamic-require:0 */
|
||
|
/**
|
||
|
* NOTE: Due to path issues, this script must be run outside of grunt
|
||
|
* directly from a powershell command.
|
||
|
*/
|
||
|
const path = require('path')
|
||
|
const createWindowsInstaller = require('electron-winstaller').createWindowsInstaller
|
||
|
|
||
|
const appDir = path.join(__dirname, "..");
|
||
|
const version = require(path.join(appDir, 'package.json')).version;
|
||
|
|
||
|
const config = {
|
||
|
usePackageJson: false,
|
||
|
outputDirectory: path.join(appDir, 'dist'),
|
||
|
appDirectory: path.join(appDir, 'dist', 'nylas-win32-ia32'),
|
||
|
loadingGif: path.join(appDir, 'build', 'resources', 'win', 'loading.gif'),
|
||
|
iconUrl: 'http://edgehill.s3.amazonaws.com/static/nylas.ico',
|
||
|
certificateFile: process.env.CERTIFICATE_FILE,
|
||
|
certificatePassword: process.env.WINDOWS_CODESIGN_KEY_PASSWORD,
|
||
|
description: "Nylas Mail",
|
||
|
version: version,
|
||
|
title: "nylas",
|
||
|
authors: 'Nylas Inc.',
|
||
|
setupIcon: path.join(appDir, 'build', 'resources', 'win', 'nylas.ico'),
|
||
|
setupExe: 'NylasMailSetup.exe',
|
||
|
exe: 'nylas.exe',
|
||
|
name: 'Nylas',
|
||
|
}
|
||
|
console.log(config);
|
||
|
console.log("---> Starting")
|
||
|
createWindowsInstaller(config, console.log, console.error)
|