@multisystemsuite/create-mf-app 1.0.9 → 1.0.10

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 CHANGED
@@ -374,11 +374,11 @@ npx @multisystemsuite/create-mf-app my-control-plane --control-plane -y
374
374
  | **Services** | `services/control-plane-api` (Express + Socket.IO + MongoDB) |
375
375
  | **UI** | React Flow designer, real-time monitor, registry, deployments, analytics, environments |
376
376
 
377
- ![Enterprise Federation Control Plane — Workflow Designer](docs/images/control-plane-workflow-designer.png)
377
+ ![Enterprise Federation Control Plane — Workflow Designer](https://raw.githubusercontent.com/Abhishek2122/create-mf-app/main/docs/images/control-plane-workflow-designer.png)
378
378
 
379
379
  *Workflow Designer tab at `http://localhost:3004` (or via shell at `/workflow-monitor-app`) — federation topology with live node health, auto-layout, and save/scan controls.*
380
380
 
381
- ![Enterprise Federation Control Plane — Federation Monitor](docs/images/control-plane-federation-monitor.png)
381
+ ![Enterprise Federation Control Plane — Federation Monitor](https://raw.githubusercontent.com/Abhishek2122/create-mf-app/main/docs/images/control-plane-federation-monitor.png)
382
382
 
383
383
  *Federation Monitor tab — healthy/unhealthy summary cards and real-time remote health stream (Socket.IO from control-plane API on `:4000`).*
384
384
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@multisystemsuite/create-mf-app",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Production-ready TypeScript CLI to scaffold enterprise microfrontend apps with React, Vite and Module Federation.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -20,7 +20,8 @@
20
20
  "type": "commonjs",
21
21
  "files": [
22
22
  "dist",
23
- "README.md"
23
+ "README.md",
24
+ "docs/images"
24
25
  ],
25
26
  "scripts": {
26
27
  "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",