-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
117 lines (99 loc) · 3.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
module.exports = function(grunt) {
var pkgJSON = grunt.file.readJSON('package.json');
// Project configuration.
grunt.initConfig({
pkg: pkgJSON,
// Concatenate ...
concat: {
// ... all the vendor libraries
vendorLibs: {
src: [
'assets/js/vendor/jquery-2.1.1.js',
'assets/js/vendor/underscore-1.6.0.js',
'assets/js/vendor/backbone-1.1.1.js',
'assets/js/vendor/marionette-1.6.2.js',
],
dest: 'tmp/vendorlibs.js',
},
// ... core JS files
core: {
src: [
'assets/js/endeavour.js',
'assets/js/router.js',
],
dest: 'tmp/core.js',
},
// ... then the models
models: {
src: ['assets/js/models/**/*'],
filter: 'isFile',
dest: 'tmp/models.js',
},
// ... then the abstract views
abstractViews: {
src: ['assets/js/views/**/*'],
filter: function(filepath) {
// grunt.log.write(filepath.replace(/\\/g, '/') + "\n");
var isJSFile = filepath.match(/\.js$/);
return isJSFile && pkgJSON.abstractViews.indexOf(filepath.replace(/\\/g, '/')) > -1;
},
dest: 'tmp/abstractViews.js',
},
// ... then the concrete views
remainingViews: {
src: ['assets/js/views/**/*'],
filter: function(filepath) {
var isJSFile = filepath.match(/\.js$/);
return isJSFile && pkgJSON.abstractViews.indexOf(filepath.replace(/\\/g, '/')) < 0;
},
dest: 'tmp/remainingViews.js',
},
// ... then our start script goes in last
start: {
src: ['assets/js/start.js'],
dest: 'tmp/start.js',
},
// ... then we concatenate everything so far
everything: {
src: [
'tmp/vendorlibs.js',
'tmp/core.js',
'tmp/models.js',
'tmp/abstractViews.js',
'tmp/remainingViews.js',
'tmp/start.js',
],
dest: 'build/<%= pkg.name %>.js',
},
},
// Uglify/compress
uglify: {
options: {
banner: '/*!\n\n Package: <%= pkg.name %>\n Version: <%= pkg.version %>\n Built: <%= grunt.template.today("yyyy-mm-dd @ h:MM:ss TT") %>\n\n Copyright (c) 2014 Cal Milne.\n\n Special thanks to jQuery, Backbone.js, Underscore.js, Marionette.js, Node.js, Grunt.js, and SASS.\n Without you this wouldn\'t have been possible!\n\n*/\n\n',
mangle: true,
},
build: {
src: 'build/<%= pkg.name %>.js',
dest: 'build/<%= pkg.name %>.min.js'
}
},
watch: {
scripts: {
files: ['assets/js/**/*'],
tasks: ['concat','uglify'],
options: {
spawn: false,
},
},
}
});
grunt.event.on('watch', function(action, filepath, target) {
grunt.log.writeln(target + ': ' + filepath + ' has ' + action);
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task(s).
grunt.registerTask('default', ['concat','uglify','watch']);
// grunt.registerTask('default', ['concat','uglify']);
};