koishipro-core.js 1.1.4 → 1.1.5
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.cjs +1 -1
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2318,9 +2318,9 @@ async function collectFsDbPaths(fs, pathMod, baseDir) {
|
|
|
2318
2318
|
return paths;
|
|
2319
2319
|
};
|
|
2320
2320
|
const results = [];
|
|
2321
|
-
results.push(...await collectCdbFiles(baseDir));
|
|
2322
2321
|
const expansionsDir = joinPath3(pathMod, baseDir, "expansions");
|
|
2323
2322
|
results.push(...await collectCdbFiles(expansionsDir));
|
|
2323
|
+
results.push(...await collectCdbFiles(baseDir));
|
|
2324
2324
|
return results;
|
|
2325
2325
|
}
|
|
2326
2326
|
function isRootCdbEntry(entryName) {
|