@neriros/ralphy 2.5.0 → 2.5.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/cli/index.js +10 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -51038,8 +51038,17 @@ async function findProjectRoot() {
|
|
|
51038
51038
|
}
|
|
51039
51039
|
return process.cwd();
|
|
51040
51040
|
}
|
|
51041
|
+
var args;
|
|
51042
|
+
try {
|
|
51043
|
+
args = await parseArgs(process.argv.slice(2));
|
|
51044
|
+
} catch (err) {
|
|
51045
|
+
process.stderr.write((err instanceof Error ? err.message : String(err)) + `
|
|
51046
|
+
|
|
51047
|
+
`);
|
|
51048
|
+
printHelp();
|
|
51049
|
+
process.exit(1);
|
|
51050
|
+
}
|
|
51041
51051
|
try {
|
|
51042
|
-
const args = await parseArgs(process.argv.slice(2));
|
|
51043
51052
|
const projectRoot = await findProjectRoot();
|
|
51044
51053
|
const statesDir = join11(projectRoot, ".ralph", "tasks");
|
|
51045
51054
|
const tasksDir = join11(projectRoot, "openspec", "changes");
|