-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcep-config.js
More file actions
35 lines (34 loc) · 949 Bytes
/
cep-config.js
File metadata and controls
35 lines (34 loc) · 949 Bytes
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 packageJson = require('./package.json')
const name = packageJson.cep.name
const bundleId = packageJson.cep.id
const version = packageJson.version
module.exports = {
packager: {
debug: false,
name: name,
bundleId: bundleId,
version: version,
src: './dist',
paths: {
cwd: __dirname + '/work'
},
zxp: {
dest: `${__dirname}/archive/adobe-ide.zxp`
},
macOs: {
dest: `${__dirname}/archive/adobe-ide.pkg`,
keychain: 'login.keychain',
keychainPassword: process.env.KEYCHAIN_PASSWORD,
identifier: 'Developer ID Installer: Koen Schmeets',
resources: `${__dirname}/resources/macos`
},
windows: {
name: name,
// cert: `${__dirname}/certs/pathto.p12`,
// certPassword: '',
dest: `${__dirname}/archive/adobe-ide.exe`,
resources: `${__dirname}/resources/windows`,
site: 'https://www.github.com/adobe-extension-tools'
},
}
}