From 176ff937cf29e50f4a53b02eea202ed2c70c8c9f Mon Sep 17 00:00:00 2001 From: "Aydrian J. Howard" Date: Tue, 12 May 2015 07:46:20 -0700 Subject: [PATCH] add pkg to gruntfile --- Gruntfile.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2e148d5..a7ecb98 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -17,7 +17,7 @@ module.exports = function(grunt) { // Configure existing grunt tasks and create custom ones grunt.initConfig({ config: config, - + pkg: grunt.file.readJSON('package.json'), jshint: { files: [ 'index.js', @@ -29,7 +29,6 @@ module.exports = function(grunt) { jshintrc: './.jshintrc' } }, - bump: { options: { files: [ 'package.json' ] @@ -45,7 +44,6 @@ module.exports = function(grunt) { , gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' } }, - shell: { test: { command : '<%= config.binPath %>/istanbul cover --report lcov --dir test/reports/ <%= config.binPath %>/_mocha test/spec -- --reporter ' + reporter,