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 01ccd03 commit ab58debCopy full SHA for ab58deb
public/bower_components/file-input/gruntfile.js
@@ -6,13 +6,13 @@ function config(name) {
6
module.exports = function(grunt) {
7
grunt.initConfig({
8
pkg: grunt.file.readJSON("package.json"),
9
- jshint: config("jshint"),
10
- karma: config("karma")
+ jshint: require("./grunt_tasks/jshint.js"),
+ karma: require("./grunt_tasks/karma.js")
11
});
12
13
grunt.loadNpmTasks("grunt-contrib-jshint");
14
grunt.loadNpmTasks("grunt-karma");
15
16
grunt.registerTask("default", ["jshint", "karma:dev"]);
17
grunt.registerTask("travis", ["jshint", "karma:travis"]);
18
-};
+};
0 commit comments