Radarr/gulp/phantom.js

14 lines
247 B
JavaScript
Raw Normal View History

2015-07-18 18:50:16 +00:00
// Switch to phantom.
// Example:
// gulp --phantom
var phantom = false;
process.argv.forEach(function (val, index, array) {
2015-07-22 02:42:38 +00:00
if (val === '--phantom') {
phantom = true;
}
});
2015-07-18 18:50:16 +00:00
2015-07-22 02:42:38 +00:00
console.log('Phantom:', phantom);
2015-07-18 18:50:16 +00:00
module.exports = phantom;