forked from javihernandez/universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
35 lines (27 loc) · 787 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*!
GPII Universal project Gruntfile
Copyright 2014 RTF-US
Licensed under the New BSD license. You may not use this file except in
compliance with this License.
You may obtain a copy of the License at
https://github.com/gpii/universal/LICENSE.txt
*/
"use strict";
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
src: ["gpii/**/*.js", "tests/**/*.js"],
buildScripts: ["Gruntfile.js"],
options: {
jshintrc: true
}
},
jsonlint: {
src: ["gpii/**/*.json", "tests/**/*.json"]
}
});
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-jsonlint");
grunt.loadNpmTasks("grunt-shell");
grunt.loadNpmTasks("grunt-gpii");
};