create-claude-workspace 2.0.0 → 2.1.0
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/scheduler/index.mjs +1 -1
- package/package.json +1 -1
package/dist/scheduler/index.mjs
CHANGED
|
@@ -299,7 +299,7 @@ export async function runScheduler(opts) {
|
|
|
299
299
|
tui.destroy();
|
|
300
300
|
}
|
|
301
301
|
// ─── CLI entry ───
|
|
302
|
-
const isDirectRun = process.argv[1]?.replace(/\\/g, '/').endsWith('scheduler.mjs');
|
|
302
|
+
const isDirectRun = process.argv[1]?.replace(/\\/g, '/').endsWith('scheduler/index.mjs');
|
|
303
303
|
if (isDirectRun) {
|
|
304
304
|
const opts = parseSchedulerArgs(process.argv.slice(2));
|
|
305
305
|
runScheduler(opts).catch(err => {
|