forked from webcompat/webcompat.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
47 lines (42 loc) · 1.3 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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
tmplPath: "webcompat/templates/",
jsPath: "webcompat/static/js",
jsDistPath: "<%= jsPath %>/dist",
cssPath: "webcompat/static/css",
imgPath: "webcompat/static/img",
banner:
"/*! <%= pkg.title %>\n" +
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>\n' +
" *\n" +
" * This code is licensed under the MPL 2.0 License, except where\n" +
" * otherwise stated. See http://mozilla.org/MPL/2.0/. */\n"
});
// Load per-task config from separate files.
grunt.loadTasks("grunt-tasks");
// load all grunt tasks
require("load-grunt-tasks")(grunt);
// Default task.
grunt.registerTask("default", [
"checkDependencies",
"jst",
"concat",
"uglify",
"postcss",
"cssmin"
]);
// Task used before doing a deploy (same as default, but does image optimization)
grunt.registerTask("deploy", [
"checkDependencies",
"jst",
"concat",
"uglify",
"postcss",
"cssmin",
"imagemin"
]);
};