react app

This commit is contained in:
Mario Romano
2016-04-07 15:33:50 +01:00
parent f32e53a835
commit 2a8113835a
55 changed files with 17175 additions and 177 deletions

View 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']);
};