@aiready/core 0.23.0 → 0.23.1

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 CHANGED
@@ -657,7 +657,8 @@ async function scanFiles(options) {
657
657
  const files = await (0, import_glob.glob)(include, {
658
658
  cwd: rootDir,
659
659
  ignore: finalExclude,
660
- absolute: true
660
+ absolute: true,
661
+ nodir: true
661
662
  });
662
663
  const gitignoreFiles = await (0, import_glob.glob)("**/.gitignore", {
663
664
  cwd: rootDir,
package/dist/index.mjs CHANGED
@@ -321,7 +321,8 @@ async function scanFiles(options) {
321
321
  const files = await glob(include, {
322
322
  cwd: rootDir,
323
323
  ignore: finalExclude,
324
- absolute: true
324
+ absolute: true,
325
+ nodir: true
325
326
  });
326
327
  const gitignoreFiles = await glob("**/.gitignore", {
327
328
  cwd: rootDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/core",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Shared utilities for AIReady analysis tools",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",