New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

core-dashboard-worona

Package Overview
Dependencies
Maintainers
2
Versions
86
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

core-dashboard-worona - npm Package Compare versions

Comparing version 1.3.9 to 1.3.10

2

package.json
{
"name": "core-dashboard-worona",
"version": "1.3.9",
"version": "1.3.10",
"description": "Core Package of Worona Dashboard",

@@ -5,0 +5,0 @@ "scripts": {

/* eslint-disable no-constant-condition */
import { getSagas, getReducers, packageActivated, getDeps, waitForDeps } from 'worona-deps';
import { put, call } from 'redux-saga/effects';
import { put, call, join, fork } from 'redux-saga/effects';
import { takeEvery } from 'redux-saga';

@@ -29,10 +29,9 @@ import { addReducer, startSaga, reloadReducers, removeReducer, stopSaga } from '../store';

if (pkg.assets) {
yield [
call(waitFor, pkg.name,
types.PACKAGE_ASSETS_LOAD_SUCCEED, types.PACKAGE_ASSETS_LOAD_FAILED),
put(actions.packageAssetsLoadRequested({ pkg })),
];
const waitForAssets = yield fork(waitFor, pkg.name,
types.PACKAGE_ASSETS_LOAD_SUCCEED, types.PACKAGE_ASSETS_LOAD_FAILED);
yield put(actions.packageAssetsLoadRequested({ pkg }));
yield join(waitForAssets);
}
yield call(packageActivated, pkg.name);
yield put(actions.packageLoadSucceed({ pkg }));
yield call(packageActivated, pkg.name, 'dashboard');
} catch (error) {

@@ -39,0 +38,0 @@ yield put(actions.packageLoadFailed({ error, pkg }));

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc