@fourier-labs/harbour 0.1.14-rc.1 → 0.1.14

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.
@@ -207,7 +207,7 @@ export class LocalRuntime {
207
207
  async pull(bundle) {
208
208
  const result = await this.compose(["pull", "--quiet"]);
209
209
  if (result.code !== 0)
210
- throw new CliError("KIT_IMAGES_UNAVAILABLE", `Docker could not pull the kit images (${bundle.images.appGateway}, ${bundle.images.sessionFixture}). They are public and pinned by digest; check that Docker is running and can reach the registry.`);
210
+ throw new CliError("KIT_IMAGES_UNAVAILABLE", `Docker could not pull the kit images (${bundle.images.appGateway}, ${bundle.images.sessionFixture}): ${result.stderr.trim().split("\n").at(-1) ?? "docker error"}. They are public and pinned by digest; \`docker compose\` (Compose v2) must be installed and Docker running with access to the registry.`);
211
211
  }
212
212
  async up() {
213
213
  const result = await this.compose(["up", "-d", "--wait"]);
@@ -1 +1 @@
1
- export const CLI_VERSION = "0.1.14-rc.1";
1
+ export const CLI_VERSION = "0.1.14";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fourier-labs/harbour",
3
- "version": "0.1.14-rc.1",
3
+ "version": "0.1.14",
4
4
  "description": "Harbour productionisation helper",
5
5
  "type": "module",
6
6
  "bin": { "harbour": "./dist/packages/harbour-cli/src/cli.js" },