Updated Branches: refs/heads/master f91a4ced0 -> a632b4e1a
Pull Request #63 - Update versions in package.json and restate the comments in Gruntfile.js contributed-by: Martin Funk Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/a632b4e1 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/a632b4e1 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/a632b4e1 Branch: refs/heads/master Commit: a632b4e1afd05c3bb6cb106bdd762646d30f20b6 Parents: f91a4ce Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Thu Dec 5 20:39:10 2013 +0100 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Thu Dec 5 20:39:10 2013 +0100 ---------------------------------------------------------------------- Gruntfile.js | 12 ++++++------ package.json | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/a632b4e1/Gruntfile.js ---------------------------------------------------------------------- diff --git a/Gruntfile.js b/Gruntfile.js index cd47c7a..b9de64d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,14 +1,14 @@ /* - * Grunt.js is a tool for automated JavaScript development - * https://github.com/cowboy/grunt + * Grunt.js is a task runner for JavaScript development. + * Grunt and its plugins are installed and managed via npm, the Node.js package manager. + * http://gruntjs.com/ * * To use it: - * 1) install node.js - http://nodejs.org/#download. This will install 'npm' (Node Package Manager) too - * 2) install grunt - 'npm -g install grunt-cli' - * 3) run: npm install (This will use package.json and install all dependencies) + * 1) install node.js - http://nodejs.org/#download. This will install 'npm' (Node Package Manager) too. + * 3) run: npm install (This will use package.json and install grunt and all dependencies) * 4.1) grunt jshint - checks all JavaScript files with JSHint * 4.2) grunt jshint:core - checks only the files in wicket-core - * 4.3) grunt test - starts a web server and runs all tests (Ajax, non-Ajax and AMD) + * 4.3) grunt - starts the registered tasks: starting a web server and running all tests (Ajax, non-Ajax and AMD) */ /*global module: true */ http://git-wip-us.apache.org/repos/asf/wicket/blob/a632b4e1/package.json ---------------------------------------------------------------------- diff --git a/package.json b/package.json index b6c0a4a..475b1d7 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,14 @@ "name": "wicket-js-unit-tests", "version": "0.1.0", "devDependencies": { - "grunt": "~0.4.1", - "grunt-cli": "~0.1.9", - "grunt-contrib-jshint": "~0.6.4", + "grunt": "~0.4.2", + "grunt-cli": "~0.1.11", + "grunt-contrib-jshint": "~0.7.2", "grunt-contrib-qunit": "~0.3.0", "grunt-contrib-connect": "~0.5.0", - "grunt-contrib-nodeunit": "~0.2.1" + "grunt-contrib-nodeunit": "~0.2.2" }, "scripts": { "test": "grunt --verbose" } -} \ No newline at end of file +}
