silgi 0.37.42 → 0.37.43
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/cli/index.mjs +1 -1
- package/dist/core/index.mjs +1 -2
- package/dist/types/index.d.mts +1 -1
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
package/dist/core/index.mjs
CHANGED
|
@@ -281,8 +281,7 @@ async function createSilgi(config) {
|
|
|
281
281
|
tag: "silgi"
|
|
282
282
|
})).withTag("silgi"),
|
|
283
283
|
captureError: config.captureError ?? (() => {
|
|
284
|
-
})
|
|
285
|
-
meta: config.meta ?? {}
|
|
284
|
+
})
|
|
286
285
|
};
|
|
287
286
|
sharedRuntimeConfig(silgi.options.runtimeConfig);
|
|
288
287
|
if (!silgi.router) {
|
package/dist/types/index.d.mts
CHANGED
|
@@ -699,10 +699,10 @@ interface Silgi {
|
|
|
699
699
|
envOptions: EnvOptions;
|
|
700
700
|
options: SilgiOptions & SilgiRuntimeOptions;
|
|
701
701
|
captureError: CaptureError;
|
|
702
|
-
meta: SilgiMeta;
|
|
703
702
|
}
|
|
704
703
|
interface SilgiConfig extends Partial<Omit<Silgi, 'options'>>, Partial<SilgiRuntimeOptions> {
|
|
705
704
|
options: DeepPartial<SilgiOptions>;
|
|
705
|
+
meta: SilgiMeta;
|
|
706
706
|
}
|
|
707
707
|
interface BuildSilgi {
|
|
708
708
|
framework?: {
|