-
Notifications
You must be signed in to change notification settings - Fork 110
/
Gruntfile.js
87 lines (83 loc) · 2.24 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
var config = {
dist: 'dist',
bower: 'bower_components',
src: 'src',
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - Copyright 2015 <%= pkg.author %> */\n'
};
var pkg = require('./package.json');
module.exports = function(grunt) {
grunt.initConfig({
config: config,
pkg: pkg,
copy: {
dist: {
files: [{
expand: true,
cwd: '<%= config.bower %>/octicons/octicons',
src: 'octicons.ttf',
dest: '<%= config.dist %>/octicons'
},
{
expand: true,
cwd: '<%= config.bower %>/octicons/octicons',
src: 'octicons.woff',
dest: '<%= config.dist %>/octicons'
},
{
expand: true,
cwd: '<%= config.bower %>/octicons/octicons',
src: 'octicons.eot',
dest: '<%= config.dist %>/octicons'
},
{
expand: true,
cwd: '<%= config.bower %>/octicons/octicons',
src: 'octicons.svg',
dest: '<%= config.dist %>/octicons'
}
]
}
},
cssmin: {
add_banner: {
options: {
banner: config.banner
},
files: {
'<%= config.dist %>/github-activity-<%= pkg.version %>.min.css': [
'<%= config.src %>/github-activity.css'
],
'<%= config.dist %>/octicons/octicons.min.css': [
'<%= config.bower %>/octicons/octicons/octicons.css'
]
}
}
},
uglify: {
options: {
banner: config.banner
},
dist: {
files: {
'<%= config.dist %>/github-activity-<%= pkg.version %>.min.js': [
'<%= config.src %>/github-activity.js'
],
'<%= config.dist %>/mustache/mustache.min.js': [
'<%= config.bower %>/mustache/mustache.js'
]
}
}
},
clean: {
build: {
src: ["dist/*"]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.registerTask( "wipe", [ "clean" ])
grunt.registerTask( "default", [ "copy", "cssmin", "uglify:dist" ] );
};