Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Use new license header for builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Apr 14, 2014
1 parent bc60f1c commit b0532e9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
9 changes: 9 additions & 0 deletions banner.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* @license
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
13 changes: 8 additions & 5 deletions gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/*
* Copyright 2013 The Polymer Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
/**
* Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
module.exports = function(grunt) {
var readManifest = require('../tools/loader/readManifest.js');
Expand Down Expand Up @@ -50,7 +53,7 @@ module.exports = function(grunt) {
sourceMapName: 'build/platform.js.map',
sourceMapIn: 'build/platform.concat.js.map',
sourceMapIncludeSources: true,
banner: grunt.file.read('LICENSE') + '// @version: <%= buildversion %>'
banner: grunt.file.read('banner.txt') + '// @version: <%= buildversion %>\n'
},
files: {
'build/platform.js': 'build/platform.concat.js'
Expand Down

0 comments on commit b0532e9

Please sign in to comment.