Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AF12011F77 for ; Thu, 26 Jun 2014 19:23:52 +0000 (UTC) Received: (qmail 36330 invoked by uid 500); 26 Jun 2014 19:23:52 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 36308 invoked by uid 500); 26 Jun 2014 19:23:52 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 36297 invoked by uid 99); 26 Jun 2014 19:23:52 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jun 2014 19:23:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 527A28A0E91; Thu, 26 Jun 2014 19:23:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jsoref@apache.org To: commits@cordova.apache.org Message-Id: <5d261bfc2ccf4cbaad90205e89e98890@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: webworks commit: CB-7036 make npm test work again (using grunt instead of jake) Date: Thu, 26 Jun 2014 19:23:52 +0000 (UTC) Repository: cordova-blackberry Updated Branches: refs/heads/master aa76043fb -> f6d11fc1c CB-7036 make npm test work again (using grunt instead of jake) Apparently there used to be support for `npm test`, it's been broken for a while because `cordova-blackberry` switched from `jake` to `grunt`. Project: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/commit/f6d11fc1 Tree: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/tree/f6d11fc1 Diff: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/diff/f6d11fc1 Branch: refs/heads/master Commit: f6d11fc1cc7ed398cd1c8bd740f1bfcfb956573a Parents: aa76043 Author: Josh Soref Authored: Thu Jun 26 15:13:09 2014 -0400 Committer: Josh Soref Committed: Thu Jun 26 15:13:09 2014 -0400 ---------------------------------------------------------------------- blackberry10/package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/f6d11fc1/blackberry10/package.json ---------------------------------------------------------------------- diff --git a/blackberry10/package.json b/blackberry10/package.json index 6144a60..ff15207 100644 --- a/blackberry10/package.json +++ b/blackberry10/package.json @@ -17,7 +17,9 @@ "node": ">=0.9.9" }, "scripts": { - "test": "./node_modules/jake/bin/cli.js" + "test": "npm run jshint && npm run jasmine", + "jshint": "node_modules/grunt-cli/bin/grunt jshint", + "jasmine": "node_modules/grunt-cli/bin/grunt jasmine_node" }, "dependencies": { "jWorkflow": "0.8.0", @@ -36,6 +38,7 @@ "devDependencies": { "grunt-contrib-jshint": "*", "grunt-jasmine-node": "*", + "grunt-cli": "*", "jasmine-node": "1.7.1" }, "readmeFilename": "README.md"