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

Side by Side Diff: third_party/polymer/v0_8/components/promise-polyfill/Gruntfile.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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

Powered by Google App Engine
This is Rietveld 408576698