core-dashboard-worona
Advanced tools
Comparing version 1.1.19 to 1.1.20
{ | ||
"name": "core-dashboard-worona", | ||
"version": "1.1.19", | ||
"version": "1.1.20", | ||
"description": "Core Package of Worona Dashboard", | ||
@@ -79,4 +79,4 @@ "main": "dist/prod/js/vendors.dashboard.2c7650aea216ec9bf4efad8aff5e9600.js", | ||
{ | ||
"file": "core-dashboard-worona/dist/dev/js/core.dashboard.2e621a39b17244db94082c6610e976d2.js", | ||
"hash": "2e621a39b17244db94082c6610e976d2" | ||
"file": "core-dashboard-worona/dist/dev/js/core.dashboard.65c81a98f82ec5877b6561dc3a911724.js", | ||
"hash": "65c81a98f82ec5877b6561dc3a911724" | ||
}, | ||
@@ -92,3 +92,3 @@ { | ||
], | ||
"main": "core-dashboard-worona/dist/dev/js/core.dashboard.2e621a39b17244db94082c6610e976d2.js", | ||
"main": "core-dashboard-worona/dist/dev/js/core.dashboard.65c81a98f82ec5877b6561dc3a911724.js", | ||
"assets": {} | ||
@@ -112,4 +112,4 @@ }, | ||
{ | ||
"file": "core-dashboard-worona/dist/prod/js/core.dashboard.21ff9119e982599cb5fe3e783796b72a.js", | ||
"hash": "21ff9119e982599cb5fe3e783796b72a" | ||
"file": "core-dashboard-worona/dist/prod/js/core.dashboard.091478d9600ff38557060d6ee3f41290.js", | ||
"hash": "091478d9600ff38557060d6ee3f41290" | ||
}, | ||
@@ -125,3 +125,3 @@ { | ||
], | ||
"main": "core-dashboard-worona/dist/prod/js/core.dashboard.21ff9119e982599cb5fe3e783796b72a.js", | ||
"main": "core-dashboard-worona/dist/prod/js/core.dashboard.091478d9600ff38557060d6ee3f41290.js", | ||
"assets": {} | ||
@@ -128,0 +128,0 @@ } |
/* eslint-disable no-constant-condition */ | ||
import { isDev } from 'worona-deps'; | ||
import { takeEvery } from 'redux-saga'; | ||
@@ -15,3 +14,3 @@ import { put, take, select } from 'redux-saga/effects'; | ||
const assetType = assets[pkg.name][type]; | ||
if (reduce(assetType, (acc, val) => acc && val, true) || isDev) { | ||
if (reduce(assetType, (acc, val) => acc && val, true)) { | ||
yield put(actions.packageAssetsLoadSucceed({ pkg })); | ||
@@ -18,0 +17,0 @@ break; |
/* eslint-disable no-constant-condition */ | ||
import { put, call, take, fork } from 'redux-saga/effects'; | ||
import { isRemote } from 'worona-deps'; | ||
import { put, call, fork } from 'redux-saga/effects'; | ||
import { takeEvery } from 'redux-saga'; | ||
@@ -23,4 +24,6 @@ import { getSagas, getReducers, packageActivated, waitForDeps } from 'worona-deps'; | ||
try { | ||
yield call(waitFor, pkg.name, | ||
types.PACKAGE_ASSETS_LOAD_SUCCEED, types.PACKAGE_ASSETS_LOAD_FAILED); | ||
if (isRemote) { | ||
yield call(waitFor, pkg.name, | ||
types.PACKAGE_ASSETS_LOAD_SUCCEED, types.PACKAGE_ASSETS_LOAD_FAILED); | ||
} | ||
yield put(actions.packageLoadSucceed({ pkg })); | ||
@@ -27,0 +30,0 @@ yield call(packageActivated, pkg.name); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
2849775
55473
3