react-mfe-gen 1.2.0 → 1.2.2
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 +4 -0
- package/dist/mfe-gen.js +1 -0
- package/images/react-mfe-gen.png +0 -0
- package/package.json +2 -3
- package/src/mfe-gen.ts +1 -0
- package/tsconfig.json +1 -0
package/README.md
CHANGED
|
@@ -25,4 +25,8 @@ Node.js installed (latest LTS recommended).
|
|
|
25
25
|
- Run the CLI
|
|
26
26
|
`create-react-mfe`
|
|
27
27
|
|
|
28
|
+
- You will see the below message in your terminal
|
|
29
|
+
|
|
30
|
+

|
|
31
|
+
|
|
28
32
|
- Answer the prompts to generate your project, container, or micro-frontend.
|
package/dist/mfe-gen.js
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mfe-gen",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Generate React micro-frontends, containers, and projects using a simple CLI with runtime integration support.",
|
|
5
|
-
"main":
|
|
5
|
+
"main": "dist/mfe-gen.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc",
|
|
8
8
|
"prepublishOnly": "npm run build",
|
|
9
|
-
"dev": "ts-node src/mfe-gen.ts",
|
|
10
9
|
"start": "tsc && node dist/mfe-gen.js",
|
|
11
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
12
11
|
},
|
package/src/mfe-gen.ts
CHANGED