-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
executable file
·84 lines (70 loc) · 2.47 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
module.exports = function(grunt) {
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
var js_no_modify_banner = grunt.file.read('src/no_modify_banner.txt');
// Project configuration.
grunt.initConfig({
pkg : grunt.file.readJSON('package.json'),
dist_dest : 'app/client/js/site_controller/_TA.js',
concat : {
options : {
seperator : ';',
},
main : {
src : [
"src/site_controller/header.js",
"src/site_controller/core.js",
"src/site_controller/modules/**/*.js",
"src/site_controller/footer.js",
],
dest : '<%= dist_dest %>'
}
},
copy : {
main : {
src : 'src/main.js',
dest : 'app/client/js/main.js',
options : {
process : function(content, srcPath) {
return js_no_modify_banner + content;
}
}
},
template_controllers : {
expand : true,
cwd : 'src/template_controllers',
src : ['**/*.js'],
dest : 'app/client/js/template_controllers',
options : {
process : function(content, srcPath) {
return js_no_modify_banner + content;
}
}
}
},
jshint : {
options : {
globals : {
console : true
}
},
dev: [
"src/site_controller/globals.js",
"src/site_controller/core.js",
"src/site_controller/modules/**/*.js",
"src/template_controllers/**/*.js"
],
dist : ['<%= dist_dest %>']
},
jsbeautifier : {
files : ['<%= dist_dest %>']
},
watch : {
files: ['src/**/*.js'],
tasks: ['default']
}
});
// tasks
grunt.registerTask('default', ['jshint:dev', 'concat', 'jsbeautifier', 'copy']);
grunt.registerTask('release', ['default', 'jshint:dist']);
grunt.registerTask('lint', ['jshint:dev']);
};