mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
24 lines
367 B
JavaScript
24 lines
367 B
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
|
|
uglify: {
|
|
options: {
|
|
banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n'
|
|
},
|
|
dist: {
|
|
files: {
|
|
'Promise.min.js': ['Promise.js']
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
|
|
grunt.registerTask('build', ['uglify']);
|
|
|
|
};
|