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"
|
"lens"
|
||||||
],
|
],
|
||||||
"role": "Viewer"
|
"role": "Viewer"
|
||||||
},
|
}
|
||||||
"publish": []
|
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"@astronautlabs/jsonpath/underscore": "^1.12.1"
|
"@astronautlabs/jsonpath/underscore": "^1.12.1"
|
||||||
|
|||||||
@ -6,7 +6,7 @@ import { getInjectable } from "@ogre-tools/injectable";
|
|||||||
import packageJson from "../../../package.json";
|
import packageJson from "../../../package.json";
|
||||||
|
|
||||||
export type ApplicationInformation = Pick<typeof packageJson, "version" | "config" | "productName" | "copyright" | "description"> & {
|
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({
|
const applicationInformationInjectable = getInjectable({
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user