You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by ra...@apache.org on 2020/07/26 23:54:16 UTC

[incubator-annotator] 05/09: Add missing ASL headers

This is an automated email from the ASF dual-hosted git repository.

randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit 0053b2aa471cc2b46bc514dd1f943b1a76532328
Author: Randall Leeds <ra...@apache.org>
AuthorDate: Fri Jul 24 17:55:21 2020 -0700

    Add missing ASL headers
---
 @types/cartesian/index.d.ts | 20 ++++++++++++++++++++
 @types/dom-seek/index.d.ts  | 20 ++++++++++++++++++++
 babel-register.js           | 20 ++++++++++++++++++++
 3 files changed, 60 insertions(+)

diff --git a/@types/cartesian/index.d.ts b/@types/cartesian/index.d.ts
index e7ad466..9578e84 100644
--- a/@types/cartesian/index.d.ts
+++ b/@types/cartesian/index.d.ts
@@ -1,3 +1,23 @@
+/**
+ * @license
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 declare module 'cartesian' {
   export default function cartesian<T>(
     list: Array<Array<T>> | { [k: string]: Array<T> },
diff --git a/@types/dom-seek/index.d.ts b/@types/dom-seek/index.d.ts
index a8d9cd7..bb379b3 100644
--- a/@types/dom-seek/index.d.ts
+++ b/@types/dom-seek/index.d.ts
@@ -1,3 +1,23 @@
+/**
+ * @license
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 declare module 'dom-seek' {
   export default function seek(
     iter: NodeIterator,
diff --git a/babel-register.js b/babel-register.js
index 87e48ab..9aaa03e 100644
--- a/babel-register.js
+++ b/babel-register.js
@@ -1 +1,21 @@
+/**
+ * @license
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
 require('@babel/register')({ extensions: ['.js', '.ts'] });