Skip to content

Commit

Permalink
a Updates license headers, adds missing
Browse files Browse the repository at this point in the history
  • Loading branch information
jwloka committed Apr 18, 2024
1 parent 7e88308 commit ec6a2f3
Show file tree
Hide file tree
Showing 10 changed files with 53 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -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");
Expand Down
6 changes: 6 additions & 0 deletions packages/api/README.md
Original file line number Diff line number Diff line change
@@ -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.
---------------------------------------------------------------------------------------------
-->
# websmith-api

The websmith API package provides interfaces and functionality to implement custom **addons** for the websmith compiler.
Expand Down
6 changes: 6 additions & 0 deletions packages/compiler/README.md
Original file line number Diff line number Diff line change
@@ -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.
---------------------------------------------------------------------------------------------
-->
# 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.
Expand Down
6 changes: 6 additions & 0 deletions packages/core/README.md
Original file line number Diff line number Diff line change
@@ -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.
---------------------------------------------------------------------------------------------
-->
# 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.
Expand Down
6 changes: 6 additions & 0 deletions packages/core/src/compiler/cache/FileCache.spec.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
6 changes: 6 additions & 0 deletions packages/examples/README.md
Original file line number Diff line number Diff line change
@@ -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.
---------------------------------------------------------------------------------------------
-->
# 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.
Expand Down
16 changes: 4 additions & 12 deletions packages/webpack-test/jest.config.js
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down
6 changes: 6 additions & 0 deletions packages/webpack/README.md
Original file line number Diff line number Diff line change
@@ -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.
---------------------------------------------------------------------------------------------
-->
# websmith-webpack

A custom webpack loader to add the websmith compiler to your build and bundling process.
Expand Down
6 changes: 6 additions & 0 deletions packages/webpack/src/loader-options.spec.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit ec6a2f3

Please sign in to comment.