@zengenti/contensis-react-base 4.0.0-beta.17 → 4.0.0-beta.19
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/cjs/contensis-react-base.js +2 -4
- package/cjs/contensis-react-base.js.map +1 -1
- package/cjs/{sagas-C0t6j-SQ.js → sagas-BphH4Paz.js} +16 -6
- package/{esm/sagas-D2ECe61q.js.map → cjs/sagas-BphH4Paz.js.map} +1 -1
- package/cjs/search.js +1 -1
- package/cjs/search.js.map +1 -1
- package/cjs/util-Cl8blSX5.js.map +1 -1
- package/esm/contensis-react-base.js +2 -4
- package/esm/contensis-react-base.js.map +1 -1
- package/esm/{sagas-D2ECe61q.js → sagas-Dt9BrrFA.js} +16 -6
- package/{cjs/sagas-C0t6j-SQ.js.map → esm/sagas-Dt9BrrFA.js.map} +1 -1
- package/esm/search.js +2 -2
- package/esm/search.js.map +1 -1
- package/esm/util-DjfOQeJe.js.map +1 -1
- package/models/search/models/Queries.d.ts +2 -3
- package/models/search/models/SearchActions.d.ts +12 -9
- package/models/search/models/SearchProps.d.ts +4 -10
- package/models/search/redux/reducers.d.ts +3 -4
- package/models/search/redux/sagas.d.ts +2 -4
- package/models/search/redux/util.d.ts +9 -1
- package/models/search/search/util.d.ts +3 -6
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ var contensisDeliveryApi = require('contensis-delivery-api');
|
|
|
7
7
|
var React = require('react');
|
|
8
8
|
var reactRedux = require('react-redux');
|
|
9
9
|
var mapJson = require('jsonpath-mapper');
|
|
10
|
-
var sagas = require('./sagas-
|
|
10
|
+
var sagas = require('./sagas-BphH4Paz.js');
|
|
11
11
|
require('reselect');
|
|
12
12
|
require('immer');
|
|
13
13
|
require('deep-equal');
|
|
@@ -765,9 +765,7 @@ const staticAssets = (app, {
|
|
|
765
765
|
maxage: CacheDuration.static,
|
|
766
766
|
startupScriptFilename: scripts.startup || startupScriptFilename,
|
|
767
767
|
staticFolderPath
|
|
768
|
-
}),
|
|
769
|
-
// eslint-disable-next-line import/no-named-as-default-member
|
|
770
|
-
express__default.default.static(`dist/${staticFolderPath}`, {
|
|
768
|
+
}), express__default.default.static(`dist/${staticFolderPath}`, {
|
|
771
769
|
// these maxage values are different in config but the same in runtime,
|
|
772
770
|
// this one is somehow converted and should end up being the same as CacheDuration.static
|
|
773
771
|
maxAge: CacheDuration.expressStatic
|