@softarc/native-federation-orchestrator 4.2.0 → 4.2.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/README.md +1 -0
- package/fesm2022/@softarc/native-federation-orchestrator.mjs +1 -1
- package/fesm2022/@softarc/native-federation-orchestrator.mjs.map +2 -2
- package/fesm2022/node.mjs +1 -1
- package/fesm2022/node.mjs.map +2 -2
- package/fesm2022/options.mjs +1 -1
- package/fesm2022/options.mjs.map +2 -2
- package/fesm2022/registry.mjs +78 -30
- package/fesm2022/registry.mjs.map +4 -4
- package/fesm2022/sdk.mjs +1 -1
- package/fesm2022/sdk.mjs.map +2 -2
- package/init-registry.mjs +1 -1
- package/package.json +1 -1
- package/quickstart.mjs +1 -1
- package/types/lib/1.domain/registry/event-registry.contract.d.ts +4 -1
- package/types/lib/1.domain/registry/index.d.ts +0 -1
- package/types/lib/2.app/config/registry.contract.d.ts +2 -2
- package/types/lib/2.app/flows/registry/setup-registry.d.ts +2 -2
- package/types/lib/1.domain/registry/registry-options.contract.d.ts +0 -11
package/README.md
CHANGED
|
@@ -129,6 +129,7 @@ const HeaderComponent = await loadRemoteModule('team/mfe2', './Header');
|
|
|
129
129
|
| [🖥️ Node.js (server-side) usage](https://github.com/native-federation/orchestrator/blob/main/docs/node.md) | SSR / Node entry, loader hook, migration guide |
|
|
130
130
|
| [🏗️ Architecture](https://github.com/native-federation/orchestrator/blob/main/docs/architecture.md) | Understanding the native federation domain |
|
|
131
131
|
| [⚙️ Configuration](https://github.com/native-federation/orchestrator/blob/main/docs/config.md) | Complete configuration reference |
|
|
132
|
+
| [📡 Event Registry](https://github.com/native-federation/orchestrator/blob/main/docs/event-registry.md) | In-page event bus for cross-MFE communication |
|
|
132
133
|
| [🔄 Version Resolution](https://github.com/native-federation/orchestrator/blob/main/docs/version-resolver.md) | How dependency conflicts are resolved |
|
|
133
134
|
| [🔒 Security & Trusted Types](https://github.com/native-federation/orchestrator/blob/main/docs/security.md) | CSP setup and the built-in Trusted Types policy |
|
|
134
135
|
|
|
@@ -2224,7 +2224,7 @@ var cloneEntry = (name, raw) => {
|
|
|
2224
2224
|
return JSON.parse(JSON.stringify(raw));
|
|
2225
2225
|
} catch {
|
|
2226
2226
|
}
|
|
2227
|
-
throw new NFError(`Could not
|
|
2227
|
+
throw new NFError(`Could not clone entry '${String(name)}'`);
|
|
2228
2228
|
};
|
|
2229
2229
|
|
|
2230
2230
|
// src/lib/3.adapters/storage/chunk.repository.ts
|