git ssb

0+

cel-desktop / ssb-pkg



Tree: d456a6cc8589489e558e6164750474ed2cfc961e

Files: d456a6cc8589489e558e6164750474ed2cfc961e / dictionary / node-notifier.js

1090 bytesRaw
1'use strict';
2
3// FOR NODE-NOTIFIER USERS:
4// place 'vendor' directory from 'node_modules/node-notifier'
5// to the directory where final executable is deployed
6
7module.exports = {
8 pkg: {
9 patches: {
10 'notifiers/balloon.js': [
11 '__dirname, \'../vendor/notifu/notifu\'',
12 'path.dirname(process.execPath), \'notifier/notifu\''
13 ],
14 'notifiers/notificationcenter.js': [
15 '__dirname,\n \'../vendor/terminal-notifier.app/Contents/MacOS/terminal-notifier\'',
16 'path.dirname(process.execPath), \'notifier/terminal-notifier\''
17 ],
18 'notifiers/toaster.js': [
19 '__dirname, \'../vendor/snoreToast/SnoreToast.exe\'',
20 'path.dirname(process.execPath), \'notifier/SnoreToast.exe\''
21 ]
22 },
23 deployFiles: [
24 [ 'vendor/notifu/notifu.exe', 'notifier/notifu.exe' ],
25 [ 'vendor/notifu/notifu64.exe', 'notifier/notifu64.exe' ],
26 [ 'vendor/terminal-notifier.app/Contents/MacOS/terminal-notifier', 'notifier/terminal-notifier' ],
27 [ 'vendor/snoreToast/SnoreToast.exe', 'notifier/SnoreToast.exe' ]
28 ]
29 }
30};
31

Built with git-ssb-web