dotmd-cli 0.14.7 → 0.14.9
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 +1 -1
- package/src/new.mjs +15 -4
- package/src/rename.mjs +10 -10
package/package.json
CHANGED
package/src/new.mjs
CHANGED
|
@@ -77,12 +77,22 @@ export async function runNew(argv, config, opts = {}) {
|
|
|
77
77
|
// Resolve template
|
|
78
78
|
const template = resolveTemplate(templateName ?? 'default', config);
|
|
79
79
|
|
|
80
|
+
// If name contains path separators, split into directory prefix and basename
|
|
81
|
+
let nameDir = null;
|
|
82
|
+
let namePart = name;
|
|
83
|
+
if (name.includes('/') || name.includes(path.sep)) {
|
|
84
|
+
nameDir = path.dirname(name);
|
|
85
|
+
namePart = path.basename(name, '.md');
|
|
86
|
+
} else if (name.endsWith('.md')) {
|
|
87
|
+
namePart = name.slice(0, -3);
|
|
88
|
+
}
|
|
89
|
+
|
|
80
90
|
// Slugify
|
|
81
|
-
const slug =
|
|
91
|
+
const slug = namePart.toLowerCase().replace(/[\s_]+/g, '-').replace(/[^a-z0-9-]/g, '').replace(/-+/g, '-').replace(/^-|-$/g, '');
|
|
82
92
|
if (!slug) { die('Name resolves to empty slug: ' + name); }
|
|
83
93
|
|
|
84
94
|
// Title
|
|
85
|
-
const docTitle = title ??
|
|
95
|
+
const docTitle = title ?? namePart.replace(/[-_]/g, ' ').replace(/\b\w/g, c => c.toUpperCase());
|
|
86
96
|
|
|
87
97
|
// Resolve target root
|
|
88
98
|
let targetRoot = config.docsRoot;
|
|
@@ -96,8 +106,9 @@ export async function runNew(argv, config, opts = {}) {
|
|
|
96
106
|
targetRoot = match;
|
|
97
107
|
}
|
|
98
108
|
|
|
99
|
-
// Path
|
|
100
|
-
const
|
|
109
|
+
// Path — if user provided a directory prefix, resolve relative to repoRoot
|
|
110
|
+
const baseDir = nameDir ? path.resolve(config.repoRoot, nameDir) : targetRoot;
|
|
111
|
+
const filePath = path.join(baseDir, slug + '.md');
|
|
101
112
|
const repoPath = toRepoPath(filePath, config.repoRoot);
|
|
102
113
|
|
|
103
114
|
if (existsSync(filePath)) {
|
package/src/rename.mjs
CHANGED
|
@@ -35,18 +35,17 @@ export async function runRename(argv, config, opts = {}) {
|
|
|
35
35
|
die(`File not found: ${oldInput}\nSearched: ${toRepoPath(config.repoRoot, config.repoRoot) || '.'}, ${toRepoPath(config.docsRoot, config.repoRoot)}`);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
// Compute new path
|
|
39
|
-
|
|
40
|
-
let newBasename = newInput;
|
|
41
|
-
// If newInput contains a path separator, use just the basename
|
|
38
|
+
// Compute new path — cross-directory if input has slashes, same directory otherwise
|
|
39
|
+
let newPath;
|
|
42
40
|
if (newInput.includes('/') || newInput.includes(path.sep)) {
|
|
43
|
-
|
|
41
|
+
let resolved = newInput;
|
|
42
|
+
if (!resolved.endsWith('.md')) resolved += '.md';
|
|
43
|
+
newPath = path.resolve(config.repoRoot, resolved);
|
|
44
|
+
} else {
|
|
45
|
+
let newBasename = newInput;
|
|
46
|
+
if (!newBasename.endsWith('.md')) newBasename += '.md';
|
|
47
|
+
newPath = path.join(path.dirname(oldPath), newBasename);
|
|
44
48
|
}
|
|
45
|
-
// Add .md if not present
|
|
46
|
-
if (!newBasename.endsWith('.md')) {
|
|
47
|
-
newBasename += '.md';
|
|
48
|
-
}
|
|
49
|
-
const newPath = path.join(oldDir, newBasename);
|
|
50
49
|
|
|
51
50
|
if (existsSync(newPath)) {
|
|
52
51
|
die(`Target already exists: ${toRepoPath(newPath, config.repoRoot)}`);
|
|
@@ -56,6 +55,7 @@ export async function runRename(argv, config, opts = {}) {
|
|
|
56
55
|
const oldRepoPath = toRepoPath(oldPath, config.repoRoot);
|
|
57
56
|
const newRepoPath = toRepoPath(newPath, config.repoRoot);
|
|
58
57
|
const oldBasename = path.basename(oldPath);
|
|
58
|
+
const newBasename = path.basename(newPath);
|
|
59
59
|
|
|
60
60
|
// Scan for references in other docs
|
|
61
61
|
const allFiles = collectDocFiles(config);
|