Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 93F0D200BA0 for ; Fri, 30 Sep 2016 03:52:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 928B0160AE9; Fri, 30 Sep 2016 01:52:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D21E8160AE3 for ; Fri, 30 Sep 2016 03:52:16 +0200 (CEST) Received: (qmail 31930 invoked by uid 500); 30 Sep 2016 01:52:16 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 31918 invoked by uid 99); 30 Sep 2016 01:52:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2016 01:52:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C8635E08B3; Fri, 30 Sep 2016 01:52:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: steven@apache.org To: commits@cordova.apache.org Date: Fri, 30 Sep 2016 01:52:15 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] js commit: CB-11928 removed jshint from grunt.registerTask because it doesn't work with node6 archived-at: Fri, 30 Sep 2016 01:52:17 -0000 Repository: cordova-js Updated Branches: refs/heads/master 640f151f0 -> fa300933d CB-11928 removed jshint from grunt.registerTask because it doesn't work with node6 This closes #138 Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/fa300933 Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/fa300933 Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/fa300933 Branch: refs/heads/master Commit: fa300933d3866caf8111475d217aea76cc41235b Parents: 0516fc1 Author: audreyso Authored: Wed Sep 28 16:52:44 2016 -0700 Committer: Steve Gill Committed: Thu Sep 29 18:51:58 2016 -0700 ---------------------------------------------------------------------- Gruntfile.js | 10 +++++----- tasks/lib/bundle.js | 1 - 2 files changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fa300933/Gruntfile.js ---------------------------------------------------------------------- diff --git a/Gruntfile.js b/Gruntfile.js index 3d4ede4..e2f8df2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -66,10 +66,10 @@ module.exports = function(grunt) { // defaults grunt.registerTask('default', ['build', 'test']); - grunt.registerTask('build', ['compile', 'jshint', 'whitespace-check']); - grunt.registerTask('test', ['compile:test', 'jshint', '_test']); - grunt.registerTask('btest', ['compile:test', 'jshint', '_btest']); + grunt.registerTask('build', ['compile', 'whitespace-check']); + grunt.registerTask('test', ['compile:test', '_test']); + grunt.registerTask('btest', ['compile:test', '_btest']); grunt.registerTask('cover', ['compile', '_cover']); - grunt.registerTask('test-browserify', ['compile-browserify:test', 'jshint', '_test']); - grunt.registerTask('btest-browserify', ['compile-browserify:test', 'jshint', '_btest']); + grunt.registerTask('test-browserify', ['compile-browserify:test', '_test']); + grunt.registerTask('btest-browserify', ['compile-browserify:test', '_btest']); }; http://git-wip-us.apache.org/repos/asf/cordova-js/blob/fa300933/tasks/lib/bundle.js ---------------------------------------------------------------------- diff --git a/tasks/lib/bundle.js b/tasks/lib/bundle.js index 32653c9..b576293 100644 --- a/tasks/lib/bundle.js +++ b/tasks/lib/bundle.js @@ -33,7 +33,6 @@ module.exports = function bundle(platform, debug, commitId, platformVersion, pla //check to see if platform has cordova-js-src directory if(fs.existsSync(platformPath) && fs.existsSync(path.join(platformPath, 'cordova-js-src'))) { - console.log(platformPath); copyProps(modules, collectFiles(path.join(platformPath, 'cordova-js-src'))); } else { // for platforms that don't have a release with cordova-js-src yet --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org