Tests: Remove devDependency and change to relative path names

This commit is contained in:
Braydon Fuller 2014-12-05 09:54:58 -05:00
parent 6902697383
commit 10a92cdebb
2 changed files with 2 additions and 3 deletions

View File

@ -92,11 +92,11 @@ gulp.task('lint', function() {
});
gulp.task('browser', ['errors'], shell.task([
'./node_modules/.bin/browserify index.js --insert-global-vars=true --standalone=bitcore -o ./browser/bitcore.js'
'./node_modules/.bin/browserify index.js --insert-global-vars=true --standalone=bitcore -o browser/bitcore.js'
]));
gulp.task('browser-test', shell.task([
'find test/ -type f -name "*.js" | xargs ./node_modules/.bin/browserify -o ./browser/tests.js'
'find test/ -type f -name "*.js" | xargs ./node_modules/.bin/browserify -o browser/tests.js'
]));
gulp.task('browser-all', ['errors'], function(callback) {

View File

@ -87,7 +87,6 @@
"chai": "~1.10.0",
"closure-compiler-jar": "git://github.com/eordano/closure-compiler-jar.git",
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.0",
"gulp-closure-compiler": "^0.2.9",
"gulp-jsdoc": "^0.1.4",
"gulp-jshint": "^1.9.0",