@meridianjs/framework 0.1.8 → 0.1.9
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/index.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -244,6 +244,7 @@ async function loadSubscribers(container, subscribersDir, disabledEvents = []) {
|
|
|
244
244
|
const eventBus = container.resolve("eventBus");
|
|
245
245
|
const files = await fs2.readdir(subscribersDir);
|
|
246
246
|
for (const file of files) {
|
|
247
|
+
if (file.startsWith("_")) continue;
|
|
247
248
|
if (/\.d\.(ts|mts)$/.test(file)) continue;
|
|
248
249
|
if (!/\.(ts|mts|js|mjs|cjs)$/.test(file)) continue;
|
|
249
250
|
const fullPath = path4.join(subscribersDir, file);
|
package/package.json
CHANGED