@novely/core 0.46.0-next.1 → 0.46.0-next.3
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/index.global.js +6 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.global.js
CHANGED
|
@@ -1448,6 +1448,11 @@ var Novely = (() => {
|
|
|
1448
1448
|
}
|
|
1449
1449
|
}
|
|
1450
1450
|
}
|
|
1451
|
+
} else if (action2 === "condition") {
|
|
1452
|
+
const actions = props[1];
|
|
1453
|
+
for (let key in actions) {
|
|
1454
|
+
actions[key] = flatActions(actions[key]);
|
|
1455
|
+
}
|
|
1451
1456
|
}
|
|
1452
1457
|
if (preloadAssets === "blocking") {
|
|
1453
1458
|
huntAssets({
|
|
@@ -2150,7 +2155,7 @@ var Novely = (() => {
|
|
|
2150
2155
|
}
|
|
2151
2156
|
push();
|
|
2152
2157
|
};
|
|
2153
|
-
if (!ctx.meta.restoring) {
|
|
2158
|
+
if (!ctx.meta.restoring || ctx.meta.goingBack) {
|
|
2154
2159
|
if (isPromise(result)) {
|
|
2155
2160
|
result.then(next2);
|
|
2156
2161
|
} else {
|