From 10a92cdebba27a8e4e6c1eee046e58562e4072b5 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Fri, 5 Dec 2014 09:54:58 -0500 Subject: [PATCH] Tests: Remove devDependency and change to relative path names --- gulpfile.js | 4 ++-- package.json | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d80d789..010328d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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) { diff --git a/package.json b/package.json index fc46d63..e56250a 100644 --- a/package.json +++ b/package.json @@ -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",