We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39a318 commit f5937d0Copy full SHA for f5937d0
Gruntfile.js
@@ -2,15 +2,15 @@ module.exports = function(grunt) {
2
"use strict";
3
// Project configuration.
4
grunt.initConfig({
5
- pkg: '<json:package.json>',
+ pkg: grunt.file.readJSON('package.json'),
6
nodeunit: {
7
all: ['test/**/*.js']
8
},
9
lint: {
10
files: ['grunt.js', 'lib/**/*.js', 'test/**/*.js']
11
12
watch: {
13
- files: '<config:lint.files>',
+ files: '<%= lint.files %>',
14
tasks: 'default'
15
16
jshint: {
0 commit comments