silgi 0.7.26 → 0.7.27
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/_chunks/index.mjs
CHANGED
package/dist/cli/prepare.mjs
CHANGED
|
@@ -577,13 +577,13 @@ async function silgiCoreFile(data, frameworkContext, silgi) {
|
|
|
577
577
|
import: [],
|
|
578
578
|
from: "./vfs"
|
|
579
579
|
},
|
|
580
|
-
"
|
|
580
|
+
"silgi/runtime/internal/deepmerge": {
|
|
581
581
|
import: [
|
|
582
582
|
{
|
|
583
|
-
name: "
|
|
583
|
+
name: "deepMerge"
|
|
584
584
|
}
|
|
585
585
|
],
|
|
586
|
-
from: "
|
|
586
|
+
from: "silgi/runtime/internal/deepmerge"
|
|
587
587
|
}
|
|
588
588
|
};
|
|
589
589
|
importItems = { ...data._importItems, ...importItems };
|
|
@@ -652,8 +652,6 @@ async function silgiCoreFile(data, frameworkContext, silgi) {
|
|
|
652
652
|
""
|
|
653
653
|
];
|
|
654
654
|
const importData = [
|
|
655
|
-
"",
|
|
656
|
-
"const mergeDeep = deepmerge({ all: true })",
|
|
657
655
|
"",
|
|
658
656
|
"export const uris = {}",
|
|
659
657
|
"",
|
|
@@ -695,7 +693,7 @@ async function silgiCoreFile(data, frameworkContext, silgi) {
|
|
|
695
693
|
` plugins: [${plugins.join(", ")}],`,
|
|
696
694
|
_silgiConfigs.length > 0 ? ` ${_silgiConfigs.map((config) => typeof config === "string" ? config : typeof config === "object" ? Object.entries(config).map(([key, value]) => `${key}: ${value}`).join(",\n ") : "").join(",\n ")},` : "",
|
|
697
695
|
" ...buildOptions,",
|
|
698
|
-
" options:
|
|
696
|
+
" options: deepMerge({",
|
|
699
697
|
` present: '${silgi.options.preset}',`,
|
|
700
698
|
" ...moduleOptions,",
|
|
701
699
|
" ..._silgiOptions",
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const deepMerge: import("@fastify/deepmerge").DeepMergeAllFn;
|