react-mfe-gen 1.2.0 → 1.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/dist/mfe-gen.js +1 -0
- package/package.json +2 -3
- package/src/mfe-gen.ts +1 -0
- package/tsconfig.json +1 -0
package/dist/mfe-gen.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-mfe-gen",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
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