-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
36 lines (27 loc) · 1.13 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
module.exports = function( grunt ) {
grunt.initConfig({
uglify : {
options : {
mangle : false
},
my_target : {
files : {
'public/app/controller.js' : [ 'public/app/controller/BrowseCtrl.js',
'public/app/controller/LogoutCtrl.js',
'public/app/controller/LogSigCtrl.js',
'public/app/controller/MenuCtrl.js',
'public/app/controller/NotificationCtrl.js',
'public/app/controller/PlayerCtrl.js',
'public/app/controller/PodcastCtrl.js',
'public/app/controller/PodcastsCtrl.js',
'public/app/controller/StackCtrl.js' ],
'public/app/app.min.js': ['public/app/app.js']
}
}
} // uglify
});
// Plugins do Grunt
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
// Tarefas que serão executadas
grunt.registerTask( 'default', [ 'uglify' ] );
};