@appshell/config 0.3.0-alpha.6 → 0.3.0
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.
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generates an appshell manifest
|
|
3
|
-
* @param
|
|
4
|
-
* @param webpackConfig path of the webpack config
|
|
3
|
+
* @param templatePath path of the appshell manifest template to compile into an appshell manifest
|
|
5
4
|
* @returns an appshell manifest
|
|
6
5
|
*/
|
|
7
|
-
declare const _default: <TMetadata extends Record<string, unknown>>(
|
|
6
|
+
declare const _default: <TMetadata extends Record<string, unknown>>(templatePath: string) => Promise<import("./types").AppshellManifest<TMetadata> | null>;
|
|
8
7
|
export default _default;
|
|
9
8
|
//# sourceMappingURL=generate.manifest.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate.manifest.d.ts","sourceRoot":"","sources":["../../src/generate.manifest.ts"],"names":[],"mappings":"AAOA
|
|
1
|
+
{"version":3,"file":"generate.manifest.d.ts","sourceRoot":"","sources":["../../src/generate.manifest.ts"],"names":[],"mappings":"AAOA;;;;GAIG;kFAC4E,MAAM;AAArF,wBAaE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/config",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Utility for producing a global appshell manifest for module federation micro-frontends",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"appshell"
|
|
28
28
|
],
|
|
29
29
|
"license": "MIT",
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "a20c074472f1f55b0479b07e95d63aa0ccdd4be9"
|
|
31
31
|
}
|