git ssb

0+

cel-desktop / ssb-pkg



Tree: ca90b5ca0579ebdcc0635288bce4978e3fb200f5

Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-79-npm / node-notifier / node-notifier.meta.js

412 bytesRaw
1'use strict';
2
3module.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