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 c56fc31 commit 8649369Copy full SHA for 8649369
Gruntfile.js
@@ -32,12 +32,12 @@ module.exports = function(grunt) {
32
jshint: {
33
lib: {
34
options: {},
35
- src: ['lib/*.js']
+ src: ['src/*.js']
36
},
37
38
watch: {
39
scripts: {
40
- files: 'lib/*.js',
+ files: 'src/*.js',
41
tasks: ['jshint', 'uglify'],
42
options: {
43
interrupt: true
@@ -54,4 +54,7 @@ module.exports = function(grunt) {
54
55
// Default task(s).
56
grunt.registerTask('default', ['jshint', 'uglify']);
57
+
58
+ // Test
59
+ grunt.registerTask('test', ['jshint']);
60
};
0 commit comments