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.
@@ -1701,7 +1701,7 @@ async function prepareCoreFile(silgi) {
1701
1701
  ];
1702
1702
  const importData = [
1703
1703
  "",
1704
- "export async function buildSilgi(option: BuildSilgi) {",
1704
+ "export async function buildSilgi(option?: BuildSilgi) {",
1705
1705
  "",
1706
1706
  "// buildSilgiBefore",
1707
1707
  ...before,
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { defineCommand, runMain } from 'citty';
3
3
 
4
- const version = "0.35.6";
4
+ const version = "0.35.7";
5
5
  const packageJson = {
6
6
  version: version};
7
7
 
@@ -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>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "silgi",
3
3
  "type": "module",
4
- "version": "0.35.6",
4
+ "version": "0.35.7",
5
5
  "private": false,
6
6
  "sideEffects": false,
7
7
  "exports": {