-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
125 lines (106 loc) · 2.12 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
118
119
120
121
122
123
124
125
module.exports = function(grunt) {
'use strict';
// Load the plugins
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-recess');
// Project configuration
grunt.initConfig({
// Metadata
pkg: grunt.file.readJSON('package.json'),
banner: '/*! <%= pkg.name %> v<%= pkg.version %> <%= grunt.template.today("yyyy") %> */\n',
// Source Files we are working with
src: {
css: [
'css/bootstrap.css',
'css/icomoon.css',
'css/app.css'
],
js: [
'js/jquery.js',
'js/bootstrap.js',
'js/datasource.js',
'js/search.js',
'js/datagrid.js',
'js/lastfm.js',
'js/app.js'
]
},
// Task configuration
clean: {
dist: ['dist']
},
copy: {
fonts: {
expand: true,
src: ['fonts/icomoon.*'],
dest: 'dist/'
}
},
concat: {
options: {
banner:
'<%= banner %>\n' +
'(function() {\n' +
'\n',
footer:
'\n' +
'})();\n'
},
js: {
src: '<%= src.js %>',
dest: 'dist/js/app.js'
}
},
uglify: {
options: {
banner: '<%= banner %>'
},
build: {
src: '<%= concat.js.dest %>',
dest: 'dist/js/app.min.js'
}
},
recess: {
options: {
compile: true
},
css: {
src: '<%= src.css %>',
dest: 'dist/css/app.css'
},
min: {
src: '<%= src.css %>',
dest: 'dist/css/app.min.css',
options: {
compress: true
}
}
},
qunit: {
all: ['test/**/*.html']
},
watch: {
js: {
files: '<%= src.js %>',
tasks: ['dist-js']
},
css: {
files: '<%= src.css %>',
tasks: ['dist-css']
}
}
});
// JS distribution task
grunt.registerTask('dist-js', ['concat', 'uglify']);
// CSS distribution task
grunt.registerTask('dist-css', ['recess']);
// Fonts distribution task
grunt.registerTask('dist-fonts', ['copy']);
// Default task
grunt.registerTask('default', ['clean', 'dist-css', 'dist-fonts', 'dist-js']);
};