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

View File

@@ -23,7 +23,7 @@ if sys.platform == 'win32':
'JSDOC': './node_modules/.bin/jsdoc',
'JSHINT': './node_modules/.bin/jshint',
'PYTHON': 'python.exe',
'PHANTOMJS': 'phantomjs.cmd'
'PHANTOMJS': './node_modules/.bin/phantomjs'
}
sys_dir = os.environ.get('SYSTEMDRIVE')
@@ -77,7 +77,7 @@ else:
variables.JAR = 'jar'
variables.JSDOC = './node_modules/.bin/jsdoc'
variables.PYTHON = 'python'
variables.PHANTOMJS = 'phantomjs'
variables.PHANTOMJS = './node_modules/.bin/phantomjs'
variables.BRANCH = output(
'%(GIT)s', 'rev-parse', '--abbrev-ref', 'HEAD').strip()

View File

@@ -25,6 +25,7 @@
"walk": "~2.3.1",
"fs-extra": "~0.8.1",
"nomnom": "~1.6.2",
"temp": "~0.7.0"
"temp": "~0.7.0",
"phantomjs": "~1.9.7-5"
}
}