core-dashboard-worona
Advanced tools
Comparing version 1.3.8 to 1.3.9
{ | ||
"name": "core-dashboard-worona", | ||
"version": "1.3.8", | ||
"version": "1.3.9", | ||
"description": "Core Package of Worona Dashboard", | ||
@@ -5,0 +5,0 @@ "scripts": { |
/* eslint-disable no-constant-condition */ | ||
import { isProd, getSagas, getReducers, packageActivated, getDeps, waitForDeps } from 'worona-deps'; | ||
import { getSagas, getReducers, packageActivated, getDeps, waitForDeps } from 'worona-deps'; | ||
import { put, call } from 'redux-saga/effects'; | ||
@@ -4,0 +4,0 @@ import { takeEvery } from 'redux-saga'; |
@@ -1,4 +0,4 @@ | ||
import { Schema, arrayOf } from 'normalizr'; | ||
import { schema } from 'normalizr'; | ||
export const packages = new Schema('packages', { idAttribute: 'name' }); | ||
export const arrayOfPackages = arrayOf(packages); | ||
export const packages = new schema.Entity('packages', {}, { idAttribute: 'name' }); | ||
export const arrayOfPackages = new schema.Array(packages); |
46924