@module-federation/node 0.6.5 → 0.6.6
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.6.6](https://github.com/module-federation/nextjs-mf/compare/node-0.6.5...node-0.6.6) (2022-10-17)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add missing reject to promise new promise ([#319](https://github.com/module-federation/nextjs-mf/issues/319)) ([550a71a](https://github.com/module-federation/nextjs-mf/commit/550a71a2043f97fb5aae0e9fed5a63023db17b11))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## [0.6.5](https://github.com/module-federation/nextjs-mf/compare/node-0.6.4...node-0.6.5) (2022-10-17)
|
|
6
15
|
|
|
7
16
|
### Dependency Updates
|
package/package.json
CHANGED
|
@@ -93,7 +93,7 @@ function buildRemotes(mfConf, webpack) {
|
|
|
93
93
|
this can be done by referencing my LoadFile, CommonJs plugins in this directory.
|
|
94
94
|
*/
|
|
95
95
|
const [global, url] = config.split('@');
|
|
96
|
-
const loadTemplate = `promise new Promise((resolve)=>{
|
|
96
|
+
const loadTemplate = `promise new Promise((resolve, reject)=>{
|
|
97
97
|
if(!global.__remote_scope__) {
|
|
98
98
|
// create a global scope for container, similar to how remotes are set on window in the browser
|
|
99
99
|
global.__remote_scope__ = {
|