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.
Files changed (2) hide show
  1. package/dist/cli.mjs +3 -3
  2. 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(".lalph", "worktree-setup.sh");
151369
- const worktreeSetupPath = pathService.join(options.directory, ".lalph", "worktree-setup.sh");
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.15";
152223
+ var version = "0.2.17";
152224
152224
 
152225
152225
  //#endregion
152226
152226
  //#region src/commands/projects/ls.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.2.16",
4
+ "version": "0.2.17",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },