silgi 0.20.5 → 0.20.8
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 +1 -1
- package/dist/cli/common.mjs +5 -0
- package/dist/meta/index.d.mts +1 -1
- package/dist/meta/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/_chunks/index.mjs
CHANGED
package/dist/cli/common.mjs
CHANGED
|
@@ -965,7 +965,12 @@ async function prepareServerFiles(silgi) {
|
|
|
965
965
|
}),
|
|
966
966
|
scanned.services.length > 0 ? "])" : "}",
|
|
967
967
|
"",
|
|
968
|
+
"export interface ScanShared extends ExtendShared {",
|
|
969
|
+
" modulesURIs: typeof modulesURIs",
|
|
970
|
+
"}",
|
|
971
|
+
"",
|
|
968
972
|
scanned.shareds.length > 0 ? "export const shareds = mergeShared([" : "export const shareds = {",
|
|
973
|
+
" modulesURIs,",
|
|
969
974
|
...scanned.shareds.map((name) => {
|
|
970
975
|
return ` ${name},`;
|
|
971
976
|
}),
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED