Files: c5c7a8ffadbd51aa28a5f3f096fe43f69405da44 / test / test-79-npm / node-notifier / node-notifier.meta.js
412 bytesRaw
1 | ; |
2 | |
3 | module.exports = function (stamp, flags) { |
4 | if (stamp.p === 'win32' && flags.ci) { |
5 | return { |
6 | allow: false, |
7 | note: 'headless windows CI seems to fail to show baloon' |
8 | }; |
9 | } |
10 | |
11 | if (stamp.p === 'win32' && stamp.m < 48) { |
12 | return { |
13 | allow: false, |
14 | note: 'flat npm is needed to require(\'which\')' |
15 | }; |
16 | } |
17 | |
18 | return { |
19 | deployFilesFrom: [ 'node-notifier' ] |
20 | }; |
21 | }; |
22 |
Built with git-ssb-web