Skip to content

Commit

Permalink
fix(micro): issue 39
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticsoul committed Nov 12, 2022
1 parent e60f85d commit 251fa04
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/hel-micro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hel-micro",
"version": "3.9.8",
"version": "3.9.9",
"description": "A module federation SDK which is unrelated to tool chain for module consumer.",
"keywords": [
"hel",
Expand Down
2 changes: 1 addition & 1 deletion packages/hel-micro/src/_diff/base.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VER = '3.9.8';
export const VER = '3.9.9';
2 changes: 1 addition & 1 deletion packages/hel-micro/src/services/logic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function getLibOrApp(appName: string, innerOptions: IInnerPreFetchOptions

if (isLib) {
const lib = getVerLib(targetName, newGetOptions);
const libWrap = {
const libWrap: IEmitAppInfo = {
appName: targetName,
appGroupName: appMeta?.app_group_name || '',
platform,
Expand Down
2 changes: 1 addition & 1 deletion packages/hel-types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export interface IEmitAppInfo {
/** 通过 libReady 发射的数据 */
isLib: boolean;
Comp: any;
appProperties?: Record<string, any>;
appProperties?: Record<string, any> | null;
lifecycle?: {
mount?: () => void;
unmount?: () => void;
Expand Down
2 changes: 1 addition & 1 deletion packages/hel-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hel-types",
"version": "3.7.0",
"version": "3.7.1",
"description": "hel types file",
"repository": {
"type": "git",
Expand Down

0 comments on commit 251fa04

Please sign in to comment.