@appshell/cli 1.0.0-alpha.24 → 1.0.0-alpha.25
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 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -273,7 +273,7 @@ Sample config template `appshell.template.json`:
|
|
|
273
273
|
|
|
274
274
|
> Note the variable expansion syntax `${CRA_MFE_URL}`. When `appshell generate manifest` is called the actual runtime environment values are injected in order to produce the remote module's appshell manifest.
|
|
275
275
|
|
|
276
|
-
> **Note** the `vars` section defines runtime configuration values a package reads with `getVars()` from [`@appshell/vars`](../
|
|
276
|
+
> **Note** the `vars` section defines runtime configuration values a package reads with `getVars()` from [`@appshell/runtime/vars`](../runtime/README.md) once it is loaded. The package must share `@appshell/runtime` as a singleton to receive them. See the examples for a use case.
|
|
277
277
|
|
|
278
278
|
Sample appshell manifest produced by the `appshell generate manifest` function:
|
|
279
279
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/cli",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.25",
|
|
4
4
|
"description": "cli utility to generate a global appshell artifacts for module federation micro-frontends",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"repository": {
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"chokidar": "^3.6.0",
|
|
39
39
|
"fast-glob": "^3.3.3"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "7d90eb91be3cb50aae5aaa680063878dfcaafea2"
|
|
42
42
|
}
|