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 2b8a5f3 commit 8ba8ebaCopy full SHA for 8ba8eba
Gruntfile.js
@@ -1,4 +1,6 @@
1
module.exports = function(grunt) {
2
+ "use strict";
3
+
4
var _ = grunt.util._;
5
var path = require('path');
6
@@ -23,7 +25,7 @@ module.exports = function(grunt) {
23
25
// Taken from http://dzone.com/snippets/calculate-all-combinations
24
26
var combine = function (a) {
27
var fn = function (n, src, got, all) {
- if (n == 0) {
28
+ if (n === 0) {
29
all.push(got);
30
return;
31
}
@@ -92,7 +94,7 @@ module.exports = function(grunt) {
92
94
options: {
93
95
jshintrc: '.jshintrc'
96
},
- all: ['src/**/*.js', 'plugins/**/*.js']
97
+ all: ['Gruntfile.js', 'src/**/*.js', 'plugins/**/*.js']
98
99
100
mocha: {
0 commit comments