From 96fa83b5084ac0fc76d3dad2e67ee32cc3b224a8 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 9 Mar 2022 17:22:11 +0530 Subject: [PATCH] Add license header --- postcss/color.js | 16 ++++++++++++++++ postcss/css-compile-variables.js | 16 ++++++++++++++++ postcss/test.js | 16 ++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/postcss/color.js b/postcss/color.js index cad91019..2251a56e 100644 --- a/postcss/color.js +++ b/postcss/color.js @@ -1,3 +1,19 @@ +/* +Copyright 2021 The Matrix.org Foundation C.I.C. + +Licensed 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. +*/ + const offColor = require("off-color").offColor; module.exports.derive = function (value, operation, argument) { diff --git a/postcss/css-compile-variables.js b/postcss/css-compile-variables.js index bc91dc06..195526ef 100644 --- a/postcss/css-compile-variables.js +++ b/postcss/css-compile-variables.js @@ -1,3 +1,19 @@ +/* +Copyright 2021 The Matrix.org Foundation C.I.C. + +Licensed 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. +*/ + const valueParser = require("postcss-value-parser"); let aliasMap; diff --git a/postcss/test.js b/postcss/test.js index d07a6689..4ed74c67 100644 --- a/postcss/test.js +++ b/postcss/test.js @@ -1,3 +1,19 @@ +/* +Copyright 2021 The Matrix.org Foundation C.I.C. + +Licensed 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. +*/ + const offColor = require("off-color").offColor; const postcss = require("postcss"); const plugin = require("./css-compile-variables");