monty-python.js
1.55 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* grunt-monty-python
*
*/
'use strict';
module.exports = function (grunt) {
var _ = require('lodash');
function createConfig(mpConfig) {
var initConfig = {};
var checkList = [];
if (mpConfig.jshint) {
grunt.loadNpmTasks('grunt-contrib-jshint');
initConfig.jshint = {
options: mpConfig.jshint.options,
all: [
'Gruntfile.js',
],
main: {
options: _.extend({}, mpConfig.jshint.browserOptions, {
globals: {
define: false,
require: false,
},
}),
files: {
src: [
'src/scripts/main.js',
],
},
}
};
checkList.push('jshint');
}
if (mpConfig.csslint) {
grunt.loadNpmTasks('grunt-contrib-csslint');
initConfig.csslint = {
};
checkList.push('csslint');
}
if (mpConfig.htmlmin) {
grunt.loadNpmTasks('grunt-contrib-htmlmin');
initConfig.htmlmin = {
};
checkList.push('htmlmin');
}
grunt.initConfig(initConfig);
grunt.registerTask('check', checkList);
grunt.registerTask('default', [
'check',
]);
}
return {
createConfig: createConfig,
};
};