From ec6a2f30b10f9c6d25381c22e45b7e83a393fe7d Mon Sep 17 00:00:00 2001 From: Jan Wloka Date: Thu, 18 Apr 2024 10:22:48 +0200 Subject: [PATCH] a Updates license headers, adds missing --- LICENSE | 2 +- eslint.config.js | 6 ++++++ packages/api/README.md | 6 ++++++ packages/compiler/README.md | 6 ++++++ packages/core/README.md | 6 ++++++ .../core/src/compiler/cache/FileCache.spec.ts | 6 ++++++ packages/examples/README.md | 6 ++++++ packages/webpack-test/jest.config.js | 16 ++++------------ packages/webpack/README.md | 6 ++++++ packages/webpack/src/loader-options.spec.ts | 6 ++++++ 10 files changed, 53 insertions(+), 13 deletions(-) diff --git a/LICENSE b/LICENSE index 806f1a19..8b9a638c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Quatico Solutions Inc. +Copyright (c) 2024 Quatico Solutions Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/eslint.config.js b/eslint.config.js index f0b3bef2..28c12ab4 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,3 +1,9 @@ +/* + * --------------------------------------------------------------------------------------------- + * Copyright (c) Quatico Solutions AG. All rights reserved. + * Licensed under the MIT License. See LICENSE in the project root for license information. + * --------------------------------------------------------------------------------------------- + */ const globals = require("globals"); const js = require("@eslint/js"); const ts = require("typescript-eslint"); diff --git a/packages/api/README.md b/packages/api/README.md index 8afcdcb5..b751b146 100644 --- a/packages/api/README.md +++ b/packages/api/README.md @@ -1,3 +1,9 @@ + # websmith-api The websmith API package provides interfaces and functionality to implement custom **addons** for the websmith compiler. diff --git a/packages/compiler/README.md b/packages/compiler/README.md index c9fe99e3..8ab1a051 100644 --- a/packages/compiler/README.md +++ b/packages/compiler/README.md @@ -1,3 +1,9 @@ + # websmith-compiler Command-line tool to execute the frontend for the TypeScript compiler. Use the package [@quatico/websmith-api](https://github.com/quatico-solutions/websmith/tree/develop/packages/api/README.md) for creating addons to generate extra code and process TypeScript unrelated artifacts, such as Sass, JSON, Java and Markdown, during TypeScript compilation. diff --git a/packages/core/README.md b/packages/core/README.md index 1a2b31de..f702b14d 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -1,3 +1,9 @@ + # websmith-core This is an **internal module** for the websmith compiler. You most likely don't want to use this package directly. If you want to integrate websmith into your build process go to [@quatico/websmith-compiler](https://github.com/quatico-solutions/websmith/tree/develop/packages/compiler/README.md) for the compiler's CLI tool or to [@quatico/websmith-webpack](https://github.com/quatico-solutions/websmith/tree/develop/packages/webpack/README.md) for the webpack plugin. diff --git a/packages/core/src/compiler/cache/FileCache.spec.ts b/packages/core/src/compiler/cache/FileCache.spec.ts index d38d323d..6ca11c96 100644 --- a/packages/core/src/compiler/cache/FileCache.spec.ts +++ b/packages/core/src/compiler/cache/FileCache.spec.ts @@ -1,3 +1,9 @@ +/* + * --------------------------------------------------------------------------------------------- + * Copyright (c) Quatico Solutions AG. All rights reserved. + * Licensed under the MIT License. See LICENSE in the project root for license information. + * --------------------------------------------------------------------------------------------- + */ import { writeFileSync } from "fs"; import ts from "typescript"; import { FileCache } from "./FileCache"; diff --git a/packages/examples/README.md b/packages/examples/README.md index a03b730c..6662e1b1 100644 --- a/packages/examples/README.md +++ b/packages/examples/README.md @@ -1,3 +1,9 @@ + # websmith-examples A set of example addons to create your own `Generators`, `Processors` or `ResultProcessors` via the [@quatico/websmith-api](https://github.com/quatico-solutions/websmith/tree/develop/packages/api/README.md) to customize the compilation process. diff --git a/packages/webpack-test/jest.config.js b/packages/webpack-test/jest.config.js index fa594e53..33e0fa0f 100644 --- a/packages/webpack-test/jest.config.js +++ b/packages/webpack-test/jest.config.js @@ -1,16 +1,8 @@ /* - * @license - * - * Copyright (c) 2017-2022 Quatico Solutions AG - * Förrlibuckstrasse 220, 8005 Zurich, Switzerland - * - * All Rights Reserved. - * - * This software is the confidential and proprietary information of - * Quatico Solutions AG, ("Confidential Information"). You shall not - * disclose such Confidential Information and shall use it only in - * accordance with the terms of the license agreement you entered into - * with Quatico. + * --------------------------------------------------------------------------------------------- + * Copyright (c) Quatico Solutions AG. All rights reserved. + * Licensed under the MIT License. See LICENSE in the project root for license information. + * --------------------------------------------------------------------------------------------- */ module.exports = { diff --git a/packages/webpack/README.md b/packages/webpack/README.md index a8eb7ced..136afaaa 100644 --- a/packages/webpack/README.md +++ b/packages/webpack/README.md @@ -1,3 +1,9 @@ + # websmith-webpack A custom webpack loader to add the websmith compiler to your build and bundling process. diff --git a/packages/webpack/src/loader-options.spec.ts b/packages/webpack/src/loader-options.spec.ts index 4e0d35d7..6fe7b284 100644 --- a/packages/webpack/src/loader-options.spec.ts +++ b/packages/webpack/src/loader-options.spec.ts @@ -1,3 +1,9 @@ +/* + * --------------------------------------------------------------------------------------------- + * Copyright (c) Quatico Solutions AG. All rights reserved. + * Licensed under the MIT License. See LICENSE in the project root for license information. + * --------------------------------------------------------------------------------------------- + */ import { LoaderContext } from "webpack"; import { getLoaderOptions, PluginOptions } from "./loader-options"; import { Upath } from "./Upath";