forked from psolom/RichFilemanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgruntfile.js
27 lines (23 loc) · 815 Bytes
/
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
module.exports = function(grunt) {
grunt.initConfig({
uglify: {
options: {
compress: {
drop_console: true
}
},
main: {
files: {
'scripts/filemanager.min.js': ['scripts/filemanager.js'],
'scripts/jquery-ui/jquery-ui.min.js': ['scripts/jquery-ui/jquery-ui.js'],
'scripts/jquery.fileDownload/jquery.fileDownload.min.js': ['scripts/jquery.fileDownload/jquery.fileDownload.js'],
'scripts/purl/purl.min.js': ['scripts/purl/purl.js']
}
}
}
});
// load plugins
grunt.loadNpmTasks('grunt-contrib-uglify');
// default tasks
grunt.registerTask('default', ['uglify']);
};