-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackager.js
36 lines (34 loc) · 1.12 KB
/
packager.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
/* eslint-disable @typescript-eslint/no-var-requires */
const packager = require('electron-packager');
const ignoreDir = [
'src', 'dist', 'samples', 'test-old',
'.github', 'docs',
'' // Required as the last element !!
].join('*|');
const ignoreFilesOrExtensions = [
'rst', 'py', 'md', 'txt', 'enc',
'ABOUT', 'LICENSE', 'NOTICE',
'.gitignore', '.eslintrc.json',
'package-lock.json', 'electron-builder.json', 'tsconfig.json',
].join('|');
packager({
dir: ".",
out: 'out', // @NOTE - If 'out' dir is changed here, change PACKAGE_DIR in archive_builder too,
overwrite: true,
icon: "src/assets/app-icon/icon",
prune: true,
name: "ScanCode Workbench",
ignore: new RegExp(`(${ignoreDir}^.*.(${ignoreFilesOrExtensions})$)`),
// osxSign: true,
// osxSign: {
// identity: 'Developer ID Application: Felix Rieseberg (LT94ZKYDCJ)',
// 'hardened-runtime': true,
// entitlements: 'entitlements.plist',
// 'entitlements-inherit': 'entitlements.plist',
// 'signature-flags': 'library'
// },
// osxNotarize: {
// appleId: '[email protected]',
// appleIdPassword: 'my-apple-id-password'
// },
});