All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.polymer.public.bower_components.promise-polyfill.Gruntfile.js Maven / Gradle / Ivy

There is a newer version: 1.9.3.1
Show newest version
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']);
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy