Remove PhantomJS as a global dependency

This commit is contained in:
Tim Schaub
2014-05-14 00:03:58 -06:00
parent abf35898ca
commit 4c8ba1bac6
2 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ if sys.platform == 'win32':
'JSDOC': './node_modules/.bin/jsdoc', 'JSDOC': './node_modules/.bin/jsdoc',
'JSHINT': './node_modules/.bin/jshint', 'JSHINT': './node_modules/.bin/jshint',
'PYTHON': 'python.exe', 'PYTHON': 'python.exe',
'PHANTOMJS': 'phantomjs.cmd' 'PHANTOMJS': './node_modules/.bin/phantomjs'
} }
sys_dir = os.environ.get('SYSTEMDRIVE') sys_dir = os.environ.get('SYSTEMDRIVE')
@@ -77,7 +77,7 @@ else:
variables.JAR = 'jar' variables.JAR = 'jar'
variables.JSDOC = './node_modules/.bin/jsdoc' variables.JSDOC = './node_modules/.bin/jsdoc'
variables.PYTHON = 'python' variables.PYTHON = 'python'
variables.PHANTOMJS = 'phantomjs' variables.PHANTOMJS = './node_modules/.bin/phantomjs'
variables.BRANCH = output( variables.BRANCH = output(
'%(GIT)s', 'rev-parse', '--abbrev-ref', 'HEAD').strip() '%(GIT)s', 'rev-parse', '--abbrev-ref', 'HEAD').strip()
+2 -1
View File
@@ -25,6 +25,7 @@
"walk": "~2.3.1", "walk": "~2.3.1",
"fs-extra": "~0.8.1", "fs-extra": "~0.8.1",
"nomnom": "~1.6.2", "nomnom": "~1.6.2",
"temp": "~0.7.0" "temp": "~0.7.0",
"phantomjs": "~1.9.7-5"
} }
} }