mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
40
react-app/bower_components/promise-polyfill/Gruntfile.js
vendored
Normal file
40
react-app/bower_components/promise-polyfill/Gruntfile.js
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
module.exports = function(grunt) {
|
||||
|
||||
grunt.initConfig({
|
||||
pkg: grunt.file.readJSON('package.json'),
|
||||
|
||||
uglify: {
|
||||
options: {
|
||||
banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n'
|
||||
},
|
||||
dist: {
|
||||
files: {
|
||||
'Promise.min.uglify.js': ['Promise.js']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
closurecompiler: {
|
||||
options: {
|
||||
compilation_level: 'ADVANCED_OPTIMIZATIONS',
|
||||
},
|
||||
dist: {
|
||||
files: {
|
||||
'Promise.min.js': ['Promise.js']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
bytesize: {
|
||||
dist: {
|
||||
src: ['Promise*.js']
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
grunt.loadNpmTasks('grunt-closurecompiler');
|
||||
grunt.loadNpmTasks('grunt-bytesize');
|
||||
|
||||
grunt.registerTask('build', ['closurecompiler', 'bytesize']);
|
||||
};
|
Reference in New Issue
Block a user