silgi 0.11.3 → 0.11.4
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
CHANGED
|
@@ -260,7 +260,7 @@ async function registerModuleExportScan(silgi) {
|
|
|
260
260
|
type: true,
|
|
261
261
|
key: importName
|
|
262
262
|
});
|
|
263
|
-
options.
|
|
263
|
+
options.shareds.push({ key: configKey, value: importName });
|
|
264
264
|
}
|
|
265
265
|
if (exportedTypes.includes("ModuleEvents")) {
|
|
266
266
|
const importName = `_${hash(`${configKey}ModuleEvents`)}`;
|
|
@@ -269,7 +269,7 @@ async function registerModuleExportScan(silgi) {
|
|
|
269
269
|
type: true,
|
|
270
270
|
key: importName
|
|
271
271
|
});
|
|
272
|
-
options.
|
|
272
|
+
options.events.push({ key: configKey, value: importName });
|
|
273
273
|
}
|
|
274
274
|
if (exportedTypes.includes("ModuleRuntimeContexts")) {
|
|
275
275
|
const importName = `_${hash(`${configKey}ModuleRuntimeContexts`)}`;
|
|
@@ -278,7 +278,7 @@ async function registerModuleExportScan(silgi) {
|
|
|
278
278
|
type: true,
|
|
279
279
|
key: importName
|
|
280
280
|
});
|
|
281
|
-
options.
|
|
281
|
+
options.contexts.push({ key: configKey, value: importName });
|
|
282
282
|
}
|
|
283
283
|
if (exportedTypes.includes("ModuleHooks")) {
|
|
284
284
|
const importName = `_${hash(`${configKey}ModuleHooks`)}`;
|
|
@@ -305,7 +305,7 @@ async function registerModuleExportScan(silgi) {
|
|
|
305
305
|
type: true,
|
|
306
306
|
key: importName
|
|
307
307
|
});
|
|
308
|
-
options.
|
|
308
|
+
options.actions.push({ key: configKey, value: importName });
|
|
309
309
|
}
|
|
310
310
|
if (exportedTypes.includes("ModuleRuntimeMethods")) {
|
|
311
311
|
const importName = `_${hash(`${configKey}ModuleRuntimeMethods`)}`;
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED