-
Notifications
You must be signed in to change notification settings - Fork 0
/
pluginrc.js
35 lines (35 loc) · 977 Bytes
/
pluginrc.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
const path = require('path')
const pass = require('./password.js');
const root = __dirname
const srcFolder = path.join(root, "src")
const destFolder = path.join(root, "dist")
const certPath = path.join(destFolder, "cert.p12")
module.exports = {
extensionBundleId: 'com.unggyu.everysecond',
extensionBundleName: 'everysecond',
extensionBundleVersion: '1.0.0',
cepVersion: '9.0',
panelName: 'EverySecond',
width: '400',
height: '600',
root: root,
sourceFolder: srcFolder,
destinationFolder: destFolder,
certificate : {
customCert: {
path: '',
password: pass.password
},
selfSign: {
country: 'KR',
province: 'province',
org: 'org',
name: 'unggyu',
password: pass.password,
locality: 'locality',
orgUnit: 'orgUnit',
email: '[email protected]',
output: certPath
}
}
}