forked from BloombergGraphics/whatiscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
executable file
·65 lines (55 loc) · 1.44 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
'use strict';
var request = require('request');
module.exports = function (grunt) {
// show elapsed time at the end
require('time-grunt')(grunt);
// load all grunt tasks
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
useminPrepare: {
html: ['index.html'],
options:{
dest: 'public'
}
},
usemin: {
html: ['public/index.html'],
},
copy: {
html: {
files: [
{ src: 'index.html', dest: 'public/index.html' },
]
},
images: {
files: [
{ expand: true, src: 'media/*.*', dest: 'public/' },
{ expand: true, src: 'images/*.*', dest: 'public/' },
{ expand: true, src: 'images/emotes/*.*', dest: 'public/' },
]
},
misc: {
files: [
{ expand: true, src: 'scripts/tracker.js', dest: 'public/' },
// { expand: true, cwd: '.tmp/concat/', src: 'app.js', dest: 'public/' },
]
}
}
});
// grunt.loadNpmTasks('grunt-filerev');
// grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-usemin');
grunt.registerTask('build', [
'useminPrepare',
'concat',
'cssmin',
'uglify',
'copy',
'usemin',
]);
grunt.registerTask('default', ['build']);
};