@mantiq/core 0.5.4 → 0.5.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mantiq/core",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Service container, router, middleware, HTTP kernel, config, and exception handler",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -175,7 +175,7 @@ export class Application extends ContainerImpl {
175
175
 
176
176
  try {
177
177
  const glob = new Bun.Glob('*/package.json')
178
- for await (const file of glob.scan({ cwd: nodeModulesDir, absolute: false })) {
178
+ for await (const file of glob.scan({ cwd: nodeModulesDir, absolute: false, followSymlinks: true })) {
179
179
  try {
180
180
  const pkgJson = JSON.parse(
181
181
  await Bun.file(`${nodeModulesDir}/${file}`).text()