-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
217 lines (195 loc) · 5.06 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Gruntfile with the configuration of grunt-express and grunt-open. No livereload yet!
module.exports = function(grunt) {
// Load Grunt tasks declared in the package.json file
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// Configure Grunt
grunt.initConfig({
htmlbuild: {
source: {
src: 'template/source/index.html',
dest: 'source/index.html',
options: {
beautify: true,
relative: true,
scripts: {
bundle: []
},
styles: {
bundle: [
'source/css/dist/css/bootstrap.css',
'source/css/attach.css'
]
},
sections: {
layout: {
header: 'template/source/header.html',
footer: 'template/source/footer.html'
}
},
}
}
},
uglify: {
my_target: {
files: [{
expand: true,
cwd: 'source/js/lib',
src: '**/*.js',
dest: 'distro/js/lib'
}]
}
},
cssmin: {
target: {
files: [{
expand: true,
cwd: 'source/css',
src: '**/*.css',
dest: 'distro/css',
}]
}
},
bower: {
dev: {
dest: 'source/',
js_dest: 'source/js/lib',
options: {
ignorePackages: ['jquery','less'],
packageSpecific: {
bootstrap: {
css_dest: 'source/css',
fonts_dest: 'source/css/'
}
}
}
}
},
copy: {
index: {
expand: true,
cwd: 'source/',
src: 'index.html',
dest: 'distro/',
},
views: {
expand: true,
cwd: 'source/views',
src: '*.html',
dest: 'distro/views',
},
scripts: {
expand: true,
cwd: 'source/js/scripts/',
src: '**/*.js',
dest: 'distro/js/scripts/',
},
js: {
expand: true,
cwd: 'source/js/',
src: '*.js',
dest: 'distro/js/',
},
fonts: {
expand: true,
cwd: 'source/css/dist/fonts',
src: '*.*',
dest: 'distro/fonts'
}
},
concat: {
css:{
src: ['distro/css/attach.css',
'distro/css/dist/css/bootstrap.css'],
dest: 'distro/css/distro.css'
}
},
jshint: {
all: ['source/js/scripts/**/*.js',
'source/js/scripts/*.js',
'source/js/config/*.js',
'source/js/*.js']
},
compress: {
distro: {
options: {
archive: 'distro/zip/distro.zip'
},
expand: true,
cwd: 'distro',
src: ['**']
}
},
clean: {
distro:["distro/css/dist",
"distro/css/attach.css",
"distro/zip"],
source:["source/less",
"source/dist"]
},
//*****************************************************
// grunt-express will serve the files from the folders listed in `bases`
// on specified `port` and `hostname`
express: {
all: {
options: {
port: 9000,
hostname: "0.0.0.0",
bases: ['source'], // Replace with the directory you want the files served from
// Make sure you don't use `.` or `..` in the path as Express
// is likely to return 403 Forbidden responses if you do
// http://stackoverflow.com/questions/14594121/express-res-sendfile-throwing-forbidden-error
livereload: true
}
}
},
// grunt-watch will monitor the projects files
watch: {
all: {
// Replace with whatever file you want to trigger the update from
// Either as a String for a single entry
// or an Array of String for multiple entries
// You can use globing patterns like `css/**/*.css`
// See https://github.com/gruntjs/grunt-contrib-watch#files
tasks: ['jshint:all'],
files: [
'index.html',
'source/**/*.js',
'source/config/**.js',
'source/scripts/**/*.js',
'source/css/dist/**.css'],
options: {
livereload: true
}
}
},
// grunt-open will open your browser at the project's URL
open: {
all: {
// Gets the port from the connect configuration
path: 'http://localhost:<%= express.all.options.port%>'
}
}
});
// Creates the `swam` task
grunt.registerTask('swam', [
'express',
'bower',
'htmlbuild:source',
'clean:source',
'open',
'watch'
]);
grunt.registerTask('packing', [
'jshint',
'uglify',
'cssmin',
'copy:index',
'copy:views',
'copy:scripts',
'copy:js',
'copy:fonts',
'concat:css',
'clean:distro',
'compress:distro'
]);
};