@ship-cli/core 0.1.8 → 0.1.9

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/bin.js +9 -3
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -186442,7 +186442,10 @@ var checkVcsAvailability = () => gen2(function* () {
186442
186442
  return { available: false, error: isRepoResult.error };
186443
186443
  }
186444
186444
  if (!isRepoResult.isRepo) {
186445
- return { available: false, error: "Not a jj repository" };
186445
+ return {
186446
+ available: false,
186447
+ error: "Not a jj repository. Run 'jj git init --colocate' to set up jj for stacked changes."
186448
+ };
186446
186449
  }
186447
186450
  return { available: true, vcs };
186448
186451
  });
@@ -190352,7 +190355,10 @@ var checkVcsAvailability2 = () => gen2(function* () {
190352
190355
  return { available: false, error: isRepoResult.error };
190353
190356
  }
190354
190357
  if (!isRepoResult.isRepo) {
190355
- return { available: false, error: "Not a jj repository" };
190358
+ return {
190359
+ available: false,
190360
+ error: "Not a jj repository. Run 'jj git init --colocate' to set up jj for stacked changes."
190361
+ };
190356
190362
  }
190357
190363
  return { available: true, vcs };
190358
190364
  });
@@ -191232,7 +191238,7 @@ var command = ship.pipe(
191232
191238
  prCommand
191233
191239
  ])
191234
191240
  );
191235
- var version = "0.1.8" ;
191241
+ var version = "0.1.9" ;
191236
191242
  var run9 = run8(command, {
191237
191243
  name: "ship",
191238
191244
  version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ship-cli/core",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Linear + jj workflow CLI for AI agents",