Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust license header and links to license files #18

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"error",
"line",
[
" SPDX-FileCopyrightText: con terra GmbH and contributors",
" SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)",
" SPDX-License-Identifier: Apache-2.0"
]
],
Expand Down
2 changes: 1 addition & 1 deletion .syncpackrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ For more details, consult the starter project's [Repository Guide](https://githu

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/base-theme/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/base-theme/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export { theme } from "./theme";
2 changes: 1 addition & 1 deletion src/packages/base-theme/theme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { extendTheme } from "@open-pioneer/chakra-integration";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/PortalFix.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import {
AlertDialog,
Expand Down
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/Provider.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import {
CSSReset,
Expand Down
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ See comments in `./Provider.tsx` for more details.

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/chakra-integration/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export * from "@chakra-ui/react";
export { CustomChakraProvider } from "./Provider";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/Logger.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { afterEach, it, vi, expect } from "vitest";
import { LoggerImpl } from "./Logger";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/Logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
const LOG_LEVEL = validateLogLevel(__LOG_LEVEL__);

Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ const LOG = createLogger("example-package");

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/core/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/error.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
const GlobalError = globalThis.Error;

Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/events.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { EventEmitter } from "./events";
import { expect, it } from "vitest";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/events.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { Resource } from "./resources";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export { Error, getErrorChain, isAbortError, throwAbortError, createAbortError } from "./error";
export { EventEmitter, type EventSource, type EventNames } from "./events";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/resources.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
/**
* An object that has some cleanup code associated with it.
Expand Down
2 changes: 1 addition & 1 deletion src/packages/core/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ However, the `HttpService`'s method should always be preferred to take advantage

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/http/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/http/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/http/services.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import type { HttpService } from "./index";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/ExternalEventServiceImpl.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/* eslint-disable @typescript-eslint/no-explicit-any */
Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/ExternalEventServiceImpl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ApplicationContext, Service, ServiceOptions } from "@open-pioneer/runtime";
import { ExternalEventService } from "./api";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ app.addEventListener("extent-selected", (event) => {

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/integration/api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { type ApiExtension, type ApiMethods, type ApiMethod } from "@open-pioneer/runtime";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export * from "./api";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/integration/services.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export { ExternalEventServiceImpl } from "./ExternalEventServiceImpl";
2 changes: 1 addition & 1 deletion src/packages/runtime-react-support/PackageContext.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { createContext } from "react";
import type { PackageIntl } from "@open-pioneer/runtime/i18n";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime-react-support/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ An internal module providing support for react integration

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/runtime-react-support/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime-react-support/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export { PackageContext, type PackageContextMethods } from "./PackageContext";
2 changes: 1 addition & 1 deletion src/packages/runtime/CustomElement.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/CustomElement.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ComponentType } from "react";
import {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/PropertiesRegistry.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ HTML sites or JavaScript code can now instantiate the application by creating a

## License

[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)
Apache-2.0 (see `LICENSE` file)
2 changes: 1 addition & 1 deletion src/packages/runtime/Service.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { PackageIntl } from "./i18n";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/ServiceRegistry.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/**
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

/* eslint-disable @typescript-eslint/no-explicit-any */
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/build.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { defineBuildConfig } from "@open-pioneer/build-support";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { createService } from "@open-pioneer/test-utils/services";
import { expect, it } from "vitest";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/builtin-services/ApiServiceImpl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ServiceOptions } from "../Service";
import { ApiExtension, ApiMethod, ApiMethods, ApiService } from "../api";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ApplicationContext } from "../api";
import { ServiceOptions } from "../Service";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0

import { createLogger } from "@open-pioneer/core";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/builtin-services/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { createEmptyI18n } from "../i18n";
import { PackageRepr } from "../service-layer/PackageRepr";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/errors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export enum ErrorId {
// Problems with application metadata
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/i18n.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { expect, it } from "vitest";
import { pickLocale } from "./i18n";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { createIntl, createIntlCache, IntlFormatters, IntlShape } from "@formatjs/intl";
import { ErrorId } from "./errors";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export * from "./api";
export { type PackageIntl } from "./i18n";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/metadata/ObservableBox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { EventEmitter, Resource } from "@open-pioneer/core";

Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/metadata/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ServiceConstructor } from "../Service";
import { ObservableBox } from "./ObservableBox";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
/**
* @vitest-environment jsdom
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ComponentType, StrictMode } from "react";
import { createRoot, Root } from "react-dom/client";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/react-integration/hooks.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { useContext, useMemo } from "react";
import { Error } from "@open-pioneer/core";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/react-integration/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
export {
useServiceInternal,
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/InterfaceSpec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { Error } from "@open-pioneer/core";
import { ErrorId } from "../errors";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/PackageRepr.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { expect, it } from "vitest";
import { AppI18n, createEmptyI18n, PackageIntl } from "../i18n";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/PackageRepr.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { Error } from "@open-pioneer/core";
import { ApplicationProperties } from "../CustomElement";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/ServiceLayer.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { expect, it } from "vitest";
import { createEmptyI18n } from "../i18n";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/ServiceLayer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { ServiceRepr } from "./ServiceRepr";
import { createLogger, Error } from "@open-pioneer/core";
Expand Down
2 changes: 1 addition & 1 deletion src/packages/runtime/service-layer/ServiceLookup.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: con terra GmbH and contributors
// SPDX-FileCopyrightText: 2023 Open Pioneer project (https://github.com/open-pioneer)
// SPDX-License-Identifier: Apache-2.0
import { Error } from "@open-pioneer/core";
import { ErrorId } from "../errors";
Expand Down
Loading