-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
95 lines (95 loc) · 2 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
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
release: {
files: [
{
expand:true,
flatten: true,
cwd:'bower_components/',
src:['angular/angular.min.js',
'angular-bootstrap/ui-bootstrap-tpls.min.js',
'bootstrap/dist/css/bootstrap.min.css',
'store.js/store.min.js'],
dest:'prod/libs/'
},
{
expand:true,
flatten: true,
src:['icon.png', 'spinner.gif'],
dest:'prod'
},
{
expand:true,
flatten: true,
cwd:'bower_components/',
src: 'bootstrap/fonts/glyphicons-halflings-regular.*',
dest:'prod/fonts/'
}
]
}
},
clean: {
release:['prod', 'prod.zip']
},
uglify: {
options: {
compress: {
drop_console: true
},
mangle: false
},
release: {
files:
{
'prod/app.min.js':'app/*.js',
'prod/background.js':'background.js',
}
}
},
'string-replace': {
release: {
options: {
replacements :[{
pattern: "bower_components/store.js/store.min.js",
replacement: "/libs/store.min.js"
}]
},
files: {
'prod/manifest.json' : 'manifest.json'
}
}
},
cssmin: {
release: {
files:{'prod/style.min.css':'style.css'}
}
},
processhtml: {
release: {
files: {
'prod/player.html': ['player.html']
}
}
},
compress: {
release: {
options: {
archive: 'prod.zip'
},
files: [
{src: ['prod/**']}
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-processhtml');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-string-replace');
grunt.registerTask('release', ['clean:release', 'copy:release', 'string-replace:release','uglify:release', 'cssmin:release', 'processhtml:release', 'compress:release']);
};