speccore 8.3.10 → 8.3.12
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/README.md +1 -1
- package/dist/commands/analyze.js +2 -2
- package/dist/commands/analyze.js.map +1 -1
- package/dist/commands/iteration/split.js +3 -3
- package/dist/commands/iteration/split.js.map +1 -1
- package/dist/core/git-integration.d.ts +1 -1
- package/dist/core/git-integration.js +1 -1
- package/dist/core/spec-paths.d.ts +1 -0
- package/dist/core/spec-paths.d.ts.map +1 -1
- package/dist/core/spec-paths.js +2 -0
- package/dist/core/spec-paths.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/commands/analyze.js
CHANGED
|
@@ -1838,8 +1838,8 @@ async function sanitizeSpecDirectories(iterDir) {
|
|
|
1838
1838
|
}
|
|
1839
1839
|
}
|
|
1840
1840
|
else if (entryStat.isFile()) {
|
|
1841
|
-
//
|
|
1842
|
-
if (
|
|
1841
|
+
// v8.3.11+: 根目录散落的文件 → 检查是否应归入 overview/(不限于 .md)
|
|
1842
|
+
if (globalSet.has(entry)) {
|
|
1843
1843
|
const overviewDir = (0, path_1.join)(specDir, spec_paths_1.GLOBAL_SPECS_DIR);
|
|
1844
1844
|
await (0, fs_extra_1.ensureDir)(overviewDir);
|
|
1845
1845
|
const dest = (0, path_1.join)(overviewDir, entry);
|