1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-02 21:15:05 +00:00

Removed yargs dependency since it fails to install in windows

This commit is contained in:
Keivan Beigi 2015-07-18 12:52:02 -07:00
parent 32d7da91b7
commit 8d85fb15c4
3 changed files with 11 additions and 7 deletions

5
.gitignore vendored
View file

@ -119,6 +119,8 @@ wix/*.wixpdb
setup/Output/
*.~is
UI.Phantom/
#VS outout folders
bin
obj
@ -126,4 +128,5 @@ output/*
#OS X metadata files
._*
._*

View file

@ -1,10 +1,12 @@
var args = require('yargs').argv;
// Switch to phantom.
// Example:
// gulp --phantom
var phantom = !!args.phantom;
console.log('Phantom:', phantom);
var phantom = false;
process.argv.forEach(function (val, index, array) {
if(val=== '--phantom'){
phantom = true;
}
});
module.exports = phantom;

View file

@ -34,7 +34,6 @@
"jshint-stylish": "1.0.0",
"run-sequence": "1.0.2",
"streamqueue": "0.1.1",
"webpack": "1.5.3",
"yargs": "^3.15.0"
"webpack": "1.5.3"
}
}