1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix typing issue with missing build.publish field (#6264)

This commit is contained in:
Sebastian Malton 2022-09-16 09:19:06 -04:00 committed by GitHub
parent 14e0af2d8f
commit a52e7be272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -208,8 +208,7 @@
"lens"
],
"role": "Viewer"
},
"publish": []
}
},
"resolutions": {
"@astronautlabs/jsonpath/underscore": "^1.12.1"

View File

@ -6,7 +6,7 @@ import { getInjectable } from "@ogre-tools/injectable";
import packageJson from "../../../package.json";
export type ApplicationInformation = Pick<typeof packageJson, "version" | "config" | "productName" | "copyright" | "description"> & {
build: Partial<typeof packageJson["build"]>;
build: Partial<typeof packageJson["build"]> & { publish?: unknown[] };
};
const applicationInformationInjectable = getInjectable({