@rizom/site-rizom 0.2.0-alpha.182 → 0.2.0-alpha.184
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.js +2 -5
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -31005,10 +31005,7 @@ function extendSite(baseSite, overrides = {}) {
|
|
|
31005
31005
|
const themeOverride = [baseSite.themeOverride, overrideThemeOverride].filter(Boolean).join(`
|
|
31006
31006
|
|
|
31007
31007
|
`);
|
|
31008
|
-
const headScripts = [
|
|
31009
|
-
...baseSite.headScripts ?? [],
|
|
31010
|
-
...overrideHeadScripts ?? []
|
|
31011
|
-
];
|
|
31008
|
+
const headScripts = overrideHeadScripts ?? baseSite.headScripts ?? [];
|
|
31012
31009
|
const content3 = mergeContent(baseSite.content, overrides.content);
|
|
31013
31010
|
const sections = mergeSections(baseSite.sections, overrides.sections);
|
|
31014
31011
|
return {
|
|
@@ -31113,4 +31110,4 @@ export {
|
|
|
31113
31110
|
Badge2 as Badge
|
|
31114
31111
|
};
|
|
31115
31112
|
|
|
31116
|
-
//# debugId=
|
|
31113
|
+
//# debugId=B52B2E609EAE7A8864756E2164756E21
|