ralph-prd 3.0.2 → 3.0.3
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/ralph/ralph-claude.mjs +2 -0
package/package.json
CHANGED
package/ralph/ralph-claude.mjs
CHANGED
|
@@ -225,6 +225,8 @@ function waitForUser(message = 'Press Enter to continue…') {
|
|
|
225
225
|
* @param {string} message
|
|
226
226
|
*/
|
|
227
227
|
function notify(title, message) {
|
|
228
|
+
const project = basename(process.cwd());
|
|
229
|
+
title = `${title} [${project}]`;
|
|
228
230
|
if (process.platform === 'darwin') {
|
|
229
231
|
const safeTitle = title.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
230
232
|
const safeMsg = message.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|