Files: cfc8d49135488f7554210234b3a503c2dbd6c6a5 / dictionary / node-notifier.js
1090 bytesRaw
1 | ; |
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 | |
7 | module.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