@squide/firefly 3.0.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/AppRouter.d.ts +2 -2
- package/dist/defineConfig.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @squide/firefly
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#118](https://github.com/gsoft-inc/wl-squide/pull/118) [`4864d30`](https://github.com/gsoft-inc/wl-squide/commit/4864d30764021a91d5827abb5b3ae7a4b4302c31) Thanks [@tjosepo](https://github.com/tjosepo)! - Omit "router" from routerProviderProps
|
|
8
|
+
|
|
3
9
|
## 3.0.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/AppRouter.d.ts
CHANGED
|
@@ -22,8 +22,8 @@ interface AppRouterProps {
|
|
|
22
22
|
onLoadProtectedData?: OnLoadProtectedDataFunction;
|
|
23
23
|
onCompleteRegistrations?: OnCompleteRegistrationsFunction;
|
|
24
24
|
waitForMsw: boolean;
|
|
25
|
-
routerProvidersProps?: RouterProviderProps
|
|
25
|
+
routerProvidersProps?: Omit<RouterProviderProps, "router">;
|
|
26
26
|
}
|
|
27
27
|
declare function AppRouter(props: AppRouterProps): react_jsx_runtime.JSX.Element;
|
|
28
28
|
|
|
29
|
-
export { AppRouter, AppRouterProps, BootstrappingRoute, OnCompleteRegistrationsFunction, OnLoadProtectedDataFunction, OnLoadPublicDataFunction };
|
|
29
|
+
export { AppRouter, type AppRouterProps, BootstrappingRoute, type OnCompleteRegistrationsFunction, type OnLoadProtectedDataFunction, type OnLoadPublicDataFunction };
|
package/dist/defineConfig.d.ts
CHANGED
|
@@ -21,4 +21,4 @@ interface FireflyDefineBuildRemoteModuleConfigOptions extends DefineBuildRemoteM
|
|
|
21
21
|
}
|
|
22
22
|
declare function defineBuildRemoteModuleConfig(swcConfig: SwcConfig, applicationName: string, { features, ...otherOptions }?: FireflyDefineBuildRemoteModuleConfigOptions): webpack.Configuration;
|
|
23
23
|
|
|
24
|
-
export { FireflyDefineBuildHostConfigOptions, FireflyDefineBuildRemoteModuleConfigOptions, FireflyDefineDevHostConfigOptions, FireflyDefineDevRemoteModuleConfigOptions, FireflyFeatures, defineBuildHostConfig, defineBuildRemoteModuleConfig, defineDevHostConfig, defineDevRemoteModuleConfig };
|
|
24
|
+
export { type FireflyDefineBuildHostConfigOptions, type FireflyDefineBuildRemoteModuleConfigOptions, type FireflyDefineDevHostConfigOptions, type FireflyDefineDevRemoteModuleConfigOptions, type FireflyFeatures, defineBuildHostConfig, defineBuildRemoteModuleConfig, defineDevHostConfig, defineDevRemoteModuleConfig };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squide/firefly",
|
|
3
3
|
"author": "Workleap",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.1",
|
|
5
5
|
"description": "Helpers to facilitate the creation of a shell package with Squide firefly technology stack.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"repository": {
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@swc/core": "1.3.
|
|
67
|
+
"@swc/core": "1.3.99",
|
|
68
68
|
"@swc/helpers": "0.5.3",
|
|
69
69
|
"@swc/jest": "0.2.29",
|
|
70
70
|
"@testing-library/jest-dom": "6.1.4",
|
|
71
|
-
"@testing-library/react": "14.
|
|
72
|
-
"@types/jest": "29.5.
|
|
73
|
-
"@types/react": "18.2.
|
|
74
|
-
"@types/react-dom": "18.2.
|
|
71
|
+
"@testing-library/react": "14.1.2",
|
|
72
|
+
"@types/jest": "29.5.10",
|
|
73
|
+
"@types/react": "18.2.39",
|
|
74
|
+
"@types/react-dom": "18.2.17",
|
|
75
75
|
"@workleap/eslint-plugin": "3.0.0",
|
|
76
76
|
"@workleap/swc-configs": "2.1.2",
|
|
77
77
|
"@workleap/tsup-configs": "3.0.1",
|
|
@@ -79,22 +79,22 @@
|
|
|
79
79
|
"@workleap/webpack-configs": "1.2.1",
|
|
80
80
|
"jest": "29.7.0",
|
|
81
81
|
"jest-environment-jsdom": "29.7.0",
|
|
82
|
-
"msw": "2.0.
|
|
82
|
+
"msw": "2.0.9",
|
|
83
83
|
"react": "18.2.0",
|
|
84
84
|
"react-dom": "18.2.0",
|
|
85
85
|
"react-error-boundary": "4.0.11",
|
|
86
|
-
"react-router-dom": "6.
|
|
86
|
+
"react-router-dom": "6.20.0",
|
|
87
87
|
"ts-jest": "29.1.1",
|
|
88
|
-
"tsup": "
|
|
88
|
+
"tsup": "8.0.1",
|
|
89
89
|
"typescript": "5.2.2",
|
|
90
90
|
"webpack": "5.89.0",
|
|
91
91
|
"@squide/webpack-configs": "1.1.0"
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
94
|
"@squide/core": "3.1.0",
|
|
95
|
-
"@squide/msw": "2.0.5",
|
|
96
95
|
"@squide/react-router": "3.0.1",
|
|
97
|
-
"@squide/webpack-module-federation": "3.0.1"
|
|
96
|
+
"@squide/webpack-module-federation": "3.0.1",
|
|
97
|
+
"@squide/msw": "2.0.5"
|
|
98
98
|
},
|
|
99
99
|
"sideEffects": false,
|
|
100
100
|
"engines": {
|