@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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianjs/framework",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Core Meridian framework: bootstrap, DI container, module/route/subscriber/job loaders",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",