silgi 0.35.6 → 0.35.7
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/build.mjs +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/types/index.d.mts +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -1701,7 +1701,7 @@ async function prepareCoreFile(silgi) {
|
|
|
1701
1701
|
];
|
|
1702
1702
|
const importData = [
|
|
1703
1703
|
"",
|
|
1704
|
-
"export async function buildSilgi(option
|
|
1704
|
+
"export async function buildSilgi(option?: BuildSilgi) {",
|
|
1705
1705
|
"",
|
|
1706
1706
|
"// buildSilgiBefore",
|
|
1707
1707
|
...before,
|
package/dist/cli/index.mjs
CHANGED
package/dist/types/index.d.mts
CHANGED
|
@@ -1035,7 +1035,7 @@ interface SilgiConfig extends Partial<Omit<Silgi, 'options'>>, Partial<SilgiRunt
|
|
|
1035
1035
|
options: DeepPartial<SilgiOptions>;
|
|
1036
1036
|
}
|
|
1037
1037
|
interface BuildSilgi {
|
|
1038
|
-
framework
|
|
1038
|
+
framework?: {
|
|
1039
1039
|
nitro?: NitroApp;
|
|
1040
1040
|
};
|
|
1041
1041
|
modules?: Partial<SilgiRuntimeOptions>;
|