lalph 0.2.16 → 0.2.17
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.mjs +3 -3
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -151365,8 +151365,8 @@ const setupWorktree = fnUntraced(function* (options) {
|
|
|
151365
151365
|
yield* options.exec`git push -u ${parsed.remote} ${parsed.branch}`;
|
|
151366
151366
|
}
|
|
151367
151367
|
}
|
|
151368
|
-
const cwdSetupPath = pathService.resolve("
|
|
151369
|
-
const worktreeSetupPath = pathService.join(options.directory, "
|
|
151368
|
+
const cwdSetupPath = pathService.resolve("scripts", "worktree-setup.sh");
|
|
151369
|
+
const worktreeSetupPath = pathService.join(options.directory, "scripts", "worktree-setup.sh");
|
|
151370
151370
|
yield* seedSetupScript(cwdSetupPath);
|
|
151371
151371
|
const setupPath = (yield* fs.exists(worktreeSetupPath)) ? worktreeSetupPath : cwdSetupPath;
|
|
151372
151372
|
yield* make$23({
|
|
@@ -152220,7 +152220,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
152220
152220
|
|
|
152221
152221
|
//#endregion
|
|
152222
152222
|
//#region package.json
|
|
152223
|
-
var version = "0.2.
|
|
152223
|
+
var version = "0.2.17";
|
|
152224
152224
|
|
|
152225
152225
|
//#endregion
|
|
152226
152226
|
//#region src/commands/projects/ls.ts
|