Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit c2e16db

Browse files
committed
fix license
1 parent e0b8f66 commit c2e16db

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"repository": "https://github.com/Polymer/gen-typescript-declarations.git",
66
"author": "Justin Fagnani <[email protected]>",
7-
"license": "MIT",
7+
"license": "BSD-3-Clause",
88
"dependencies": {
99
"escodegen": "^1.8.1",
1010
"polymer-analyzer": "next"

src/gen-ts.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/**
2+
* @license
3+
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
4+
* This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5+
* The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6+
* The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7+
* Code distributed by Google as part of the polymer project is also
8+
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9+
*/
110
// Requires node >= 7.6
211

312
import { Analyzer, Feature, Element, Package, FSUrlLoader, PackageUrlResolver, Property, ElementMixin, Method } from 'polymer-analyzer';
@@ -265,4 +274,4 @@ function getNamespaceAndName(name: string): { name?: string, namespace?: string
265274
}
266275
}
267276
return { name };
268-
}
277+
}

0 commit comments

Comments
 (0)