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:
parent
14e0af2d8f
commit
a52e7be272
@ -208,8 +208,7 @@
|
||||
"lens"
|
||||
],
|
||||
"role": "Viewer"
|
||||
},
|
||||
"publish": []
|
||||
}
|
||||
},
|
||||
"resolutions": {
|
||||
"@astronautlabs/jsonpath/underscore": "^1.12.1"
|
||||
|
||||
@ -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({
|
||||
|
||||
Loading…
Reference in New Issue
Block a user