-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
55 lines (51 loc) · 1.59 KB
/
vue.config.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const assert = require('assert');
const IS_SPECTRON = process.env.IS_SPECTRON === '1';
const FORCE_CODE_SIGNING = process.env.FORCE_CODE_SIGNING !== 'false';
/* eslint-disable-next-line no-console */
console.log('Code signing forced:', FORCE_CODE_SIGNING);
function getEnv(env, def) {
if (def !== undefined) {
assert(typeof def === 'string');
}
const envVar = JSON.stringify(process.env[env] !== undefined ? process.env[env] : def);
if (envVar === undefined) {
throw new Error('Missing required environment variable: ' + env);
}
return envVar;
}
module.exports = {
pluginOptions: {
electronBuilder: {
chainWebpackMainProcess: config => {
config.plugin('define').tap(args => {
Object.assign(args[0], {
NODE_URL: getEnv('GODCOIN_NODE_URL', IS_SPECTRON ? 'ws://localhost:7777' : undefined),
});
return args;
});
},
mainProcessFile: './src/background/index.ts',
mainProcessWatch: ['./src/background'],
builderOptions: {
artifactName: '${name}-${version}-${os}-x64.${ext}',
productName: 'GODcoin Wallet',
mac: {
category: 'public.app-category.finance',
forceCodeSigning: FORCE_CODE_SIGNING,
identity: 'GODcoin',
},
win: {
forceCodeSigning: FORCE_CODE_SIGNING,
target: [{ target: 'nsis', arch: ['x64'] }],
},
linux: {
category: 'Finance',
target: [
{ target: 'AppImage', arch: ['x64'] },
{ target: 'zip', arch: ['x64'] },
],
},
},
},
},
};