@appshell/config 0.3.0 → 0.3.1-alpha.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.
- package/dist/main.js +1 -1
- package/dist/types/generate.index.d.ts +4 -1
- package/dist/types/generate.index.d.ts.map +1 -1
- package/dist/types/generate.metadata.d.ts +4 -1
- package/dist/types/generate.metadata.d.ts.map +1 -1
- package/dist/types/utils/loadJson.d.ts +5 -1
- package/dist/types/utils/loadJson.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { AppshellIndex } from './types';
|
|
2
|
-
|
|
2
|
+
type GenerateIndexOptions = {
|
|
3
|
+
insecure: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: (registries: string[], options?: GenerateIndexOptions) => Promise<AppshellIndex>;
|
|
3
6
|
export default _default;
|
|
4
7
|
//# sourceMappingURL=generate.index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate.index.d.ts","sourceRoot":"","sources":["../../src/generate.index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"generate.index.d.ts","sourceRoot":"","sources":["../../src/generate.index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAKxC,KAAK,oBAAoB,GAAG;IAC1B,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;qCAGY,MAAM,EAAE,YACX,oBAAoB,KAC5B,QAAQ,aAAa,CAAC;AAHzB,wBA+BE"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Metadata } from './types';
|
|
2
|
-
|
|
2
|
+
type GenerateMetadataOptions = {
|
|
3
|
+
insecure: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: <T = Record<string, Metadata>>(registries: string[], options?: GenerateMetadataOptions) => Promise<T>;
|
|
3
6
|
export default _default;
|
|
4
7
|
//# sourceMappingURL=generate.metadata.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generate.metadata.d.ts","sourceRoot":"","sources":["../../src/generate.metadata.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"generate.metadata.d.ts","sourceRoot":"","sources":["../../src/generate.metadata.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAKnC,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC;mEAGY,MAAM,EAAE,YACX,uBAAuB;AAFlC,wBA4BE"}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type LoadJsonOptions = {
|
|
2
|
+
insecure: boolean;
|
|
3
|
+
target: string | RegExp;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: <T = Record<string, unknown>>(jsonPathOrUrl: string, options?: LoadJsonOptions) => Promise<T[]>;
|
|
2
6
|
export default _default;
|
|
3
7
|
//# sourceMappingURL=loadJson.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loadJson.d.ts","sourceRoot":"","sources":["../../../src/utils/loadJson.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"loadJson.d.ts","sourceRoot":"","sources":["../../../src/utils/loadJson.ts"],"names":[],"mappings":"AAOA,KAAK,eAAe,GAAG;IACrB,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB,CAAC;qEAkCe,MAAM,YACZ,eAAe;AAF1B,wBAUE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/config",
|
|
3
|
-
"version": "0.3.0",
|
|
3
|
+
"version": "0.3.1-alpha.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": "c179680ea832d98e236e96494df4832651608454"
|
|
31
31
|
}
|