silgi 0.36.0 → 0.36.1
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 +3 -3
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/build.mjs
CHANGED
|
@@ -1707,7 +1707,7 @@ async function prepareCoreFile(silgi) {
|
|
|
1707
1707
|
...before,
|
|
1708
1708
|
"",
|
|
1709
1709
|
"const silgi = await createSilgi({",
|
|
1710
|
-
" framework: option
|
|
1710
|
+
" framework: option?.framework,",
|
|
1711
1711
|
" shared: shareds,",
|
|
1712
1712
|
" services: services,",
|
|
1713
1713
|
" schemas: schemas,",
|
|
@@ -1722,8 +1722,8 @@ async function prepareCoreFile(silgi) {
|
|
|
1722
1722
|
" runtimeConfig: {} as SilgiRuntimeOptions,",
|
|
1723
1723
|
" routeRules: routeRules as any,",
|
|
1724
1724
|
` present: '${silgi.options.preset}',`,
|
|
1725
|
-
" ...option
|
|
1726
|
-
" ...option
|
|
1725
|
+
" ...option?.modules,",
|
|
1726
|
+
" ...option?.options,",
|
|
1727
1727
|
" }) as any,",
|
|
1728
1728
|
" })",
|
|
1729
1729
|
"",
|
package/dist/cli/index.mjs
CHANGED