Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(649)

Side by Side Diff: polymer_1.2.3/bower_components/promise-polyfill/Gruntfile.js

Issue 1581713003: [third_party] add polymer 1.2.3 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: 1.2.3 Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 module.exports = function(grunt) { 1 module.exports = function(grunt) {
2 2
3 grunt.initConfig({ 3 grunt.initConfig({
4 pkg: grunt.file.readJSON('package.json'), 4 pkg: grunt.file.readJSON('package.json'),
5 5
6 uglify: { 6 uglify: {
7 options: { 7 options: {
8 banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n' 8 banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n'
9 }, 9 },
10 dist: { 10 dist: {
(...skipping 20 matching lines...) Expand all
31 } 31 }
32 } 32 }
33 }); 33 });
34 34
35 grunt.loadNpmTasks('grunt-contrib-uglify'); 35 grunt.loadNpmTasks('grunt-contrib-uglify');
36 grunt.loadNpmTasks('grunt-closurecompiler'); 36 grunt.loadNpmTasks('grunt-closurecompiler');
37 grunt.loadNpmTasks('grunt-bytesize'); 37 grunt.loadNpmTasks('grunt-bytesize');
38 38
39 grunt.registerTask('build', ['closurecompiler', 'bytesize']); 39 grunt.registerTask('build', ['closurecompiler', 'bytesize']);
40 }; 40 };
OLDNEW
« no previous file with comments | « polymer_1.2.3/bower_components/promise-polyfill/.bower.json ('k') | polymer_1.2.3/bower_components/promise-polyfill/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698