From 81509debbd038e2967426f8e89fc9d542a812fe0 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Fri, 16 Jan 2015 11:59:22 -0500 Subject: [PATCH 1/2] Fix package.json by replacing gulp-bitcore with bitcore-build --- gulpfile.js | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 53191d2f5..a22eb1cb8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,5 +1,5 @@ -var gulp_bitcore = require('gulp-bitcore'); +var bitcoreTasks = require('bitcore-build'); -gulp_bitcore(); +bitcoreTasks(); diff --git a/package.json b/package.json index 09e781887..d1e3a8086 100644 --- a/package.json +++ b/package.json @@ -86,7 +86,7 @@ "chai": "~1.10.0", "closure-compiler-jar": "git://github.com/eordano/closure-compiler-jar.git", "gulp": "^3.8.10", - "gulp-bitcore": "^0.3.0", + "bitcore-build": "^0.4.1", "istanbul": "^0.3.5", "jsdoc": "^3.3.0-alpha11", "jsdoc-to-markdown": "=0.5.9", From 4997c2df4399727aa6694a98e4f875c8c789484a Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Fri, 16 Jan 2015 13:17:12 -0500 Subject: [PATCH 2/2] Removed karma from devDependencies since it's defined in bitcore-build --- package.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/package.json b/package.json index d1e3a8086..42c4997ac 100644 --- a/package.json +++ b/package.json @@ -90,11 +90,6 @@ "istanbul": "^0.3.5", "jsdoc": "^3.3.0-alpha11", "jsdoc-to-markdown": "=0.5.9", - "karma": "^0.12.28", - "karma-chrome-launcher": "^0.1.7", - "karma-detect-browsers": "^0.1.3", - "karma-firefox-launcher": "^0.1.3", - "karma-mocha": "^0.1.9", "mocha": "~2.0.1", "more-fs": "=0.5.0", "plato": "^1.3.0",