diff --git a/.github/workflows/kubectl-versions.yaml b/.github/workflows/kubectl-versions.yaml index 39c7d5dc..e76991e8 100644 --- a/.github/workflows/kubectl-versions.yaml +++ b/.github/workflows/kubectl-versions.yaml @@ -70,6 +70,7 @@ jobs: cat packages/kubectl-versions/build/versions.json | yq -pj '.[-1][-1]' > .github/version.log version=$(cat .github/version.log) yq -pj -oj -i '.config.bundledKubectlVersion="'"$version"'"' freelens/package.json + yq -pj -oj -i '.config.bundledKubectlVersion="'"$version"'"' packages/core/package.json echo "Bundled kubectl version $version" > .github/pr_body.log - name: Check for changes diff --git a/.renovaterc.json5 b/.renovaterc.json5 index fc1b3f5c..cea9efa8 100644 --- a/.renovaterc.json5 +++ b/.renovaterc.json5 @@ -28,7 +28,8 @@ "customType": "regex", "extractVersionTemplate": "^(?.*)$", "fileMatch": [ - "^freelens/package\\.json$" + "^freelens/package\\.json$", + "^packages/core/package\\.json$" ], "matchStrings": [ "\"k8sProxyVersion\":\\s*\"(?\\d+\\.\\d+\\.\\d+)\"" @@ -42,7 +43,8 @@ "customType": "regex", "extractVersionTemplate": "^(?.*)$", "fileMatch": [ - "^freelens/package\\.json$" + "^freelens/package\\.json$", + "^packages/core/package\\.json$" ], "matchStrings": [ "\"bundledHelmVersion\":\\s*\"(?\\d+\\.\\d+\\.\\d+)\"" diff --git a/freelens/package.json b/freelens/package.json index ecd7c1d1..24464ad4 100644 --- a/freelens/package.json +++ b/freelens/package.json @@ -2,7 +2,7 @@ "name": "freelens", "private": true, "productName": "Freelens", - "description": "Freelens - FOSS IDE for Kubernetes", + "description": "Freelens - Free IDE for Kubernetes", "homepage": "https://freelens.app", "version": "0.1.3", "repository": { @@ -239,9 +239,9 @@ "license": "build/license.txt" }, "protocols": { - "name": "Lens Protocol Handler", + "name": "Freelens Protocol Handler", "schemes": [ - "lens" + "freelens" ], "role": "Viewer" } diff --git a/packages/business-features/keyboard-shortcuts/package.json b/packages/business-features/keyboard-shortcuts/package.json index 0e7a2406..38e39cdd 100644 --- a/packages/business-features/keyboard-shortcuts/package.json +++ b/packages/business-features/keyboard-shortcuts/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/keyboard-shortcuts", "private": false, "version": "0.1.3", - "description": "Keyboard shortcuts for Lens", + "description": "Keyboard shortcuts for Freeens", "type": "commonjs", "files": [ "dist" diff --git a/packages/core/src/common/protocol-handler/registration.ts b/packages/core/src/common/protocol-handler/registration.ts index 9fdf390b..b83e02fc 100644 --- a/packages/core/src/common/protocol-handler/registration.ts +++ b/packages/core/src/common/protocol-handler/registration.ts @@ -13,7 +13,7 @@ export interface ProtocolHandlerRegistration { } /** - * The collection of the dynamic parts of a URI which initiated a `lens://` + * The collection of the dynamic parts of a URI which initiated a `freelens://` * protocol request */ export interface RouteParams { @@ -42,7 +42,7 @@ export interface RouteParams { /** * RouteHandler represents the function signature of the handler function for - * `lens://` protocol routing. + * `freelens://` protocol routing. */ export interface RouteHandler { (params: RouteParams): void; diff --git a/packages/core/src/common/protocol-handler/router.ts b/packages/core/src/common/protocol-handler/router.ts index 0d3bfe6a..f70753dd 100644 --- a/packages/core/src/common/protocol-handler/router.ts +++ b/packages/core/src/common/protocol-handler/router.ts @@ -81,7 +81,7 @@ export abstract class LensProtocolRouter { /** * Attempts to route the given URL to all internal routes that have been registered - * @param url the parsed URL that initiated the `lens://` protocol + * @param url the parsed URL that initiated the `freelens://` protocol * @returns true if a route has been found */ protected _routeToInternal(url: Url>): RouteAttempt { @@ -255,7 +255,7 @@ export abstract class LensProtocolRouter { } /** - * Add a handler under the `lens://app` tree of routing. + * Add a handler under the `freelens://app` tree of routing. * @param pathSchema the URI path schema to match against for this handler * @param handler a function that will be called if a protocol path matches */ diff --git a/packages/core/src/main/catalog-sources/sync-general-catalog-entities.injectable.ts b/packages/core/src/main/catalog-sources/sync-general-catalog-entities.injectable.ts index aaadef36..bc70c5e6 100644 --- a/packages/core/src/main/catalog-sources/sync-general-catalog-entities.injectable.ts +++ b/packages/core/src/main/catalog-sources/sync-general-catalog-entities.injectable.ts @@ -19,7 +19,7 @@ const syncGeneralCatalogEntitiesInjectable = getInjectable({ return () => { catalogEntityRegistry.addComputedSource( - "lens:general", + "freelens:general", reactiveGeneralCatalogEntities, ); }; diff --git a/packages/core/src/main/electron-app/runnables/setup-deep-linking.injectable.ts b/packages/core/src/main/electron-app/runnables/setup-deep-linking.injectable.ts index ffa5c632..3b785a93 100644 --- a/packages/core/src/main/electron-app/runnables/setup-deep-linking.injectable.ts +++ b/packages/core/src/main/electron-app/runnables/setup-deep-linking.injectable.ts @@ -22,7 +22,7 @@ const setupDeepLinkingInjectable = getInjectable({ const showApplicationWindow = di.inject(showApplicationWindowInjectable); const firstInstanceCommandLineArguments = di.inject(commandLineArgumentsInjectable); - logger.info(`📟 Setting protocol client for lens://`); + logger.info(`📟 Setting protocol client for freelens://`); if (app.setAsDefaultProtocolClient("lens")) { logger.info("📟 Protocol client register succeeded ✅"); @@ -65,5 +65,5 @@ export default setupDeepLinkingInjectable; const getDeepLinkUrl = (commandLineArguments: string[]) => ( commandLineArguments .map(toLower) - .find(startsWith("lens://")) + .find(startsWith("freelens://")) ); diff --git a/packages/core/src/main/protocol-handler/__test__/router.test.ts b/packages/core/src/main/protocol-handler/__test__/router.test.ts index d7db80f7..5feb3412 100644 --- a/packages/core/src/main/protocol-handler/__test__/router.test.ts +++ b/packages/core/src/main/protocol-handler/__test__/router.test.ts @@ -55,20 +55,20 @@ describe("protocol router tests", () => { }); it("should broadcast invalid host on non internal or non extension URLs", async () => { - await lpr.route("lens://foobar"); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInvalid, "invalid host", "lens://foobar"); + await lpr.route("freelens://foobar"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInvalid, "invalid host", "freelens://foobar"); }); it("should broadcast internal route when called with valid host", async () => { lpr.addInternalHandler("/", noop); try { - expect(await lpr.route("lens://app")).toBeUndefined(); + expect(await lpr.route("freelens://app")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } - expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerInternal, "lens://app", "matched"); + expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerInternal, "freelens://app", "matched"); }); it("should broadcast external route when called with valid host", async () => { @@ -98,20 +98,20 @@ describe("protocol router tests", () => { lpr.addInternalHandler("/", noop); try { - expect(await lpr.route("lens://app")).toBeUndefined(); + expect(await lpr.route("freelens://app")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } - expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerInternal, "lens://app", "matched"); + expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerInternal, "freelens://app", "matched"); try { - expect(await lpr.route("lens://extension/@mirantis/minikube")).toBeUndefined(); + expect(await lpr.route("freelens://extension/@mirantis/minikube")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } - expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerExtension, "lens://extension/@mirantis/minikube", "matched"); + expect(broadcastMessageMock).toHaveBeenCalledWith(ProtocolHandlerExtension, "freelens://extension/@mirantis/minikube", "matched"); }); it("should call handler if matches", async () => { @@ -120,13 +120,13 @@ describe("protocol router tests", () => { lpr.addInternalHandler("/page", () => { called = true; }); try { - expect(await lpr.route("lens://app/page")).toBeUndefined(); + expect(await lpr.route("freelens://app/page")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe(true); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "lens://app/page", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "freelens://app/page", "matched"); }); it("should call most exact handler", async () => { @@ -136,13 +136,13 @@ describe("protocol router tests", () => { lpr.addInternalHandler("/page/:id", params => { called = params.pathname.id; }); try { - expect(await lpr.route("lens://app/page/foo")).toBeUndefined(); + expect(await lpr.route("freelens://app/page/foo")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe("foo"); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "lens://app/page/foo", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "freelens://app/page/foo", "matched"); }); it("should call most exact handler for an extension", async () => { @@ -176,13 +176,13 @@ describe("protocol router tests", () => { enabledExtensions.set(extId, { name: "@foobar/icecream", enabled: true }); try { - expect(await lpr.route("lens://extension/@foobar/icecream/page/foob")).toBeUndefined(); + expect(await lpr.route("freelens://extension/@foobar/icecream/page/foob")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe("foob"); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerExtension, "lens://extension/@foobar/icecream/page/foob", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerExtension, "freelens://extension/@foobar/icecream/page/foob", "matched"); }); it("should work with non-org extensions", async () => { @@ -241,14 +241,14 @@ describe("protocol router tests", () => { } try { - expect(await lpr.route("lens://extension/icecream/page")).toBeUndefined(); + expect(await lpr.route("freelens://extension/icecream/page")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe(1); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerExtension, "lens://extension/icecream/page", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerExtension, "freelens://extension/icecream/page", "matched"); }); it("should throw if urlSchema is invalid", () => { @@ -264,13 +264,13 @@ describe("protocol router tests", () => { lpr.addInternalHandler("/page/bar", () => { called = 4; }); try { - expect(await lpr.route("lens://app/page/foo/bar/bat")).toBeUndefined(); + expect(await lpr.route("freelens://app/page/foo/bar/bat")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe(3); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "lens://app/page/foo/bar/bat", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "freelens://app/page/foo/bar/bat", "matched"); }); it("should call most exact handler with 2 found handlers", async () => { @@ -281,12 +281,12 @@ describe("protocol router tests", () => { lpr.addInternalHandler("/page/bar", () => { called = 4; }); try { - expect(await lpr.route("lens://app/page/foo/bar/bat")).toBeUndefined(); + expect(await lpr.route("freelens://app/page/foo/bar/bat")).toBeUndefined(); } catch (error) { expect(throwIfDefined(error)).not.toThrow(); } expect(called).toBe(1); - expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "lens://app/page/foo/bar/bat", "matched"); + expect(broadcastMessageMock).toBeCalledWith(ProtocolHandlerInternal, "freelens://app/page/foo/bar/bat", "matched"); }); }); diff --git a/packages/core/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.ts b/packages/core/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.ts index c33f7d2e..4aebb74f 100644 --- a/packages/core/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.ts +++ b/packages/core/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.ts @@ -64,7 +64,7 @@ export class LensProtocolRouterMain extends proto.LensProtocolRouter { try { const url = new URLParse(rawUrl, true); - if (url.protocol.toLowerCase() !== "lens:") { + if (url.protocol.toLowerCase() !== "freelens:") { throw new proto.RoutingError(proto.RoutingErrorType.INVALID_PROTOCOL, url); } diff --git a/packages/core/src/main/start-main-application/runnables/show-initial-window.injectable.ts b/packages/core/src/main/start-main-application/runnables/show-initial-window.injectable.ts index eb52ea68..6a9b2d14 100644 --- a/packages/core/src/main/start-main-application/runnables/show-initial-window.injectable.ts +++ b/packages/core/src/main/start-main-application/runnables/show-initial-window.injectable.ts @@ -13,7 +13,7 @@ import { afterApplicationIsLoadedInjectionToken } from "@freelensapp/application const getDeepLinkUrl = (commandLineArguments: string[]) => ( commandLineArguments .map(arg => arg.toLowerCase()) - .find(arg => arg.startsWith("lens://")) + .find(arg => arg.startsWith("freelens://")) ); const showInitialWindowInjectable = getInjectable({ diff --git a/packages/core/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.tsx b/packages/core/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.tsx index a9a706d3..0133cfb5 100644 --- a/packages/core/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.tsx +++ b/packages/core/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.tsx @@ -58,7 +58,7 @@ export const bindProtocolAddRouteHandlers = ({

{"Unknown Action for "} - lens://app/ + freelens://app/ {tail} . Are you on the latest version? diff --git a/packages/extension-api/package.json b/packages/extension-api/package.json index 58570a97..52da48af 100644 --- a/packages/extension-api/package.json +++ b/packages/extension-api/package.json @@ -1,7 +1,7 @@ { "name": "@freelensapp/extensions", "productName": "Freelens extensions", - "description": "Freelens - Open Source Kubernetes IDE: extensions", + "description": "Freelens - Free IDE for Kubernetes: extensions", "version": "0.1.3", "copyright": "© 2024-2025 Freelens Authors", "license": "MIT", diff --git a/packages/infrastructure/eslint-config/package.json b/packages/infrastructure/eslint-config/package.json index 689721b4..651a0d3a 100644 --- a/packages/infrastructure/eslint-config/package.json +++ b/packages/infrastructure/eslint-config/package.json @@ -1,7 +1,7 @@ { "name": "@freelensapp/eslint-config", "version": "0.1.3", - "description": "Lens eslint and prettier configurations", + "description": "Freelens eslint and prettier configurations", "author": { "name": "Freelens Authors", "email": "freelens@freelens.app" diff --git a/packages/infrastructure/jest/package.json b/packages/infrastructure/jest/package.json index c6869ba6..137d0062 100644 --- a/packages/infrastructure/jest/package.json +++ b/packages/infrastructure/jest/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/jest", "private": false, "version": "0.1.3", - "description": "Jest configuration and scripts for Lens packages.", + "description": "Jest configuration and scripts for Freelens packages.", "type": "commonjs", "publishConfig": { "access": "public", diff --git a/packages/infrastructure/typescript/package.json b/packages/infrastructure/typescript/package.json index a461d228..dc701739 100644 --- a/packages/infrastructure/typescript/package.json +++ b/packages/infrastructure/typescript/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/typescript", "private": false, "version": "0.1.3", - "description": "Typescript configuration for Lens packages.", + "description": "Typescript configuration for Freelens packages.", "type": "commonjs", "publishConfig": { "access": "public", diff --git a/packages/legacy-extension-example/package.json b/packages/legacy-extension-example/package.json index ef164da4..048d7ed5 100644 --- a/packages/legacy-extension-example/package.json +++ b/packages/legacy-extension-example/package.json @@ -1,7 +1,7 @@ { "name": "@freelensapp/legacy-extension-example", "private": false, - "description": "An example bundled Lens extensions using the v1 API", + "description": "An example bundled Freelens extensions using the v1 API", "version": "0.1.3", "type": "commonjs", "files": [ diff --git a/packages/legacy-global-di/package.json b/packages/legacy-global-di/package.json index 8440cbf7..a36de567 100644 --- a/packages/legacy-global-di/package.json +++ b/packages/legacy-global-di/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/legacy-global-di", "private": false, "version": "0.1.3", - "description": "Injection tokens for implementing metrics for Lens", + "description": "Injection tokens for implementing metrics for Freelens", "type": "commonjs", "publishConfig": { "access": "public", diff --git a/packages/logger/package.json b/packages/logger/package.json index a34c0d33..de775d3b 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/logger", "private": false, "version": "0.1.3", - "description": "Highly extendable logger in the Lens.", + "description": "Highly extendable logger in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/metrics/package.json b/packages/metrics/package.json index 2cd479bf..1698ba40 100644 --- a/packages/metrics/package.json +++ b/packages/metrics/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/metrics", "private": false, "version": "0.1.3", - "description": "Injection tokens for implementing metrics for Lens", + "description": "Injection tokens for implementing metrics for Freelens", "type": "commonjs", "publishConfig": { "access": "public", diff --git a/packages/node-fetch/package.json b/packages/node-fetch/package.json index c4f1faf9..af436e43 100644 --- a/packages/node-fetch/package.json +++ b/packages/node-fetch/package.json @@ -1,7 +1,7 @@ { "name": "@freelensapp/node-fetch", "version": "0.1.3", - "description": "Node fetch for Lens", + "description": "Node fetch for Freelens", "license": "MIT", "private": false, "publishConfig": { diff --git a/packages/random-id/package.json b/packages/random-id/package.json index 0e4acb43..9bc579d9 100644 --- a/packages/random-id/package.json +++ b/packages/random-id/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/random", "private": false, "version": "0.1.3", - "description": "Highly extendable random in the Lens.", + "description": "Highly extendable random in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/routing/package.json b/packages/routing/package.json index 74be64ab..0c341528 100644 --- a/packages/routing/package.json +++ b/packages/routing/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/routing", "private": false, "version": "0.1.3", - "description": "Highly extendable routing in the Lens.", + "description": "Highly extendable routing in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/technical-features/application/agnostic/package.json b/packages/technical-features/application/agnostic/package.json index e12dd526..fbaf194b 100644 --- a/packages/technical-features/application/agnostic/package.json +++ b/packages/technical-features/application/agnostic/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/application", "private": false, "version": "0.1.3", - "description": "Package for creating Lens applications", + "description": "Package for creating Freelens applications", "type": "commonjs", "files": [ "dist" diff --git a/packages/technical-features/application/electron-main/package.json b/packages/technical-features/application/electron-main/package.json index 381f032a..ae4cad30 100644 --- a/packages/technical-features/application/electron-main/package.json +++ b/packages/technical-features/application/electron-main/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/application-for-electron-main", "private": false, "version": "0.1.3", - "description": "Electron's main specifics for creating Lens applications", + "description": "Electron's main specifics for creating Freelens applications", "type": "commonjs", "files": [ "dist" diff --git a/packages/technical-features/prometheus/package.json b/packages/technical-features/prometheus/package.json index 6db06a7b..fe2009c1 100644 --- a/packages/technical-features/prometheus/package.json +++ b/packages/technical-features/prometheus/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/prometheus", "private": false, "version": "0.1.3", - "description": "Prometheus support for Lens", + "description": "Prometheus support for Freelens", "type": "commonjs", "publishConfig": { "access": "public", diff --git a/packages/ui-components/animate/package.json b/packages/ui-components/animate/package.json index 11dd71aa..3af720c1 100644 --- a/packages/ui-components/animate/package.json +++ b/packages/ui-components/animate/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/animate", "private": false, "version": "0.1.3", - "description": "Highly extendable animate in the Lens.", + "description": "Highly extendable animate in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/button/package.json b/packages/ui-components/button/package.json index 532049a4..6764eef4 100644 --- a/packages/ui-components/button/package.json +++ b/packages/ui-components/button/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/button", "private": false, "version": "0.1.3", - "description": "Highly extendable button in the Lens.", + "description": "Highly extendable button in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/error-boundary/package.json b/packages/ui-components/error-boundary/package.json index b1b614c2..34f7f32b 100644 --- a/packages/ui-components/error-boundary/package.json +++ b/packages/ui-components/error-boundary/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/error-boundary", "private": false, "version": "0.1.3", - "description": "Highly extendable error-boundary in the Lens.", + "description": "Highly extendable error-boundary in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/icon/package.json b/packages/ui-components/icon/package.json index 423842e5..aa47f94c 100644 --- a/packages/ui-components/icon/package.json +++ b/packages/ui-components/icon/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/icon", "private": false, "version": "0.1.3", - "description": "Highly extendable icon in the Lens.", + "description": "Highly extendable icon in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/notifications/package.json b/packages/ui-components/notifications/package.json index d8ace5bd..8ca04cfc 100644 --- a/packages/ui-components/notifications/package.json +++ b/packages/ui-components/notifications/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/notifications", "private": false, "version": "0.1.3", - "description": "Highly extendable notifications in the Lens.", + "description": "Highly extendable notifications in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/resizing-anchor/package.json b/packages/ui-components/resizing-anchor/package.json index 5af68ce0..27612ce5 100644 --- a/packages/ui-components/resizing-anchor/package.json +++ b/packages/ui-components/resizing-anchor/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/resizing-anchor", "private": false, "version": "0.1.3", - "description": "Highly extendable resizing-anchor in the Lens.", + "description": "Highly extendable resizing-anchor in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/spinner/package.json b/packages/ui-components/spinner/package.json index a77eb6fb..1cedfc9b 100644 --- a/packages/ui-components/spinner/package.json +++ b/packages/ui-components/spinner/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/spinner", "private": false, "version": "0.1.3", - "description": "Highly extendable spinner in the Lens.", + "description": "Highly extendable spinner in the Freelens.", "type": "commonjs", "files": [ "dist" diff --git a/packages/ui-components/tooltip/package.json b/packages/ui-components/tooltip/package.json index 2334508c..7bd94afa 100644 --- a/packages/ui-components/tooltip/package.json +++ b/packages/ui-components/tooltip/package.json @@ -2,7 +2,7 @@ "name": "@freelensapp/tooltip", "private": false, "version": "0.1.3", - "description": "Highly extendable tooltip in the Lens.", + "description": "Highly extendable tooltip in the Freelens.", "type": "commonjs", "files": [ "dist"