From ddbbf3ea017bd0163bc703789eda7e4bbc3b4057 Mon Sep 17 00:00:00 2001 From: Henry Snopek Date: Mon, 29 Sep 2014 11:03:31 -0500 Subject: [PATCH 1/2] lock devDependencies, roots, to 3.0.0-rc.10; remove peerDependencies; change roots-util to 0.1.x --- package.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 364cd63..4fd9998 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "js-yaml": "3.x", "lodash": "2.x", "minimatch": "1.x", - "roots-util": "0.0.4" + "roots-util": "0.1.x" }, "devDependencies": { "coffee-script": "1.8.x", @@ -30,13 +30,10 @@ "mocha": "1.x", "mocha-lcov-reporter": "0.0.1", "rimraf": "2.x", - "roots": "3.x", + "roots": "3.0.0-rc.10", "should": "4.x", "when": "3.x" }, - "peerDependencies": { - "roots": "3.x" - }, "scripts": { "test": "npm run lint && mocha", "lint": "find lib/ -name '*.coffee' | xargs coffeelint", From bf098dfe91772393093aa891560afc2d23d0b9a2 Mon Sep 17 00:00:00 2001 From: Henry Snopek Date: Wed, 19 Nov 2014 20:11:11 -0600 Subject: [PATCH 2/2] make compile_fixture promise compliant --- test/test.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.coffee b/test/test.coffee index 4ee690e..ac16b2e 100644 --- a/test/test.coffee +++ b/test/test.coffee @@ -10,7 +10,7 @@ h = new RootsUtil.Helpers(base: _path) compile_fixture = (fixture_name, done) -> @public = path.join(fixture_name, 'public') - h.project.compile(Roots, fixture_name, done) + h.project.compile(Roots, fixture_name).done(done) before (done) -> h.project.install_dependencies('*', done)