@aiready/core 0.22.1 → 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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
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,
|