Skip to content

Commit f5937d0

Browse files
committed
1 parent e39a318 commit f5937d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ module.exports = function(grunt) {
22
"use strict";
33
// Project configuration.
44
grunt.initConfig({
5-
pkg: '<json:package.json>',
5+
pkg: grunt.file.readJSON('package.json'),
66
nodeunit: {
77
all: ['test/**/*.js']
88
},
99
lint: {
1010
files: ['grunt.js', 'lib/**/*.js', 'test/**/*.js']
1111
},
1212
watch: {
13-
files: '<config:lint.files>',
13+
files: '<%= lint.files %>',
1414
tasks: 'default'
1515
},
1616
jshint: {

0 commit comments

Comments
 (0)