1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/core/webpack/library-bundle.ts
Sebastian Malton 7c18c2a23b Fix crashes with usages of @k8slens/core/common
- Only observable with extensions

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-02-02 09:54:24 -05:00

15 lines
331 B
TypeScript

/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
import { webpackLensMain } from "./main";
import { webpackLensRenderer } from "./renderer";
const config = [
webpackLensMain(),
webpackLensRenderer(),
];
export default config;