@cedarjs/cli 5.0.0-canary.2505 → 5.0.0-canary.2507

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.
@@ -104,7 +104,7 @@ const handler = async (args) => {
104
104
  }
105
105
  await tasks.run();
106
106
  } catch (e) {
107
- console.log(c.error(e.message));
107
+ console.log(c.error(e instanceof Error ? e.message : String(e)));
108
108
  process.exit(1);
109
109
  }
110
110
  };
@@ -1,5 +1,3 @@
1
- const command = "deploy <target>";
2
- const description = "Setup deployment to various targets";
3
1
  import { terminalLink } from "termi-link";
4
2
  import * as setupDeployBaremetal from "./providers/baremetal.js";
5
3
  import * as setupDeployCoherence from "./providers/coherence.js";
@@ -9,6 +7,8 @@ import * as setupDeployRender from "./providers/render.js";
9
7
  import * as setupDeployServerless from "./providers/serverless.js";
10
8
  import * as setupDeployUniversalDeploy from "./providers/universal-deploy.js";
11
9
  import * as setupDeployVercel from "./providers/vercel.js";
10
+ const command = "deploy <target>";
11
+ const description = "Setup deployment to various targets";
12
12
  const builder = (yargs) => yargs.command(setupDeployBaremetal).command(setupDeployCoherence).command(setupDeployFlightcontrol).command(setupDeployNetlify).command(setupDeployRender).command(setupDeployServerless).command(setupDeployUniversalDeploy).command(setupDeployVercel).demandCommand().option("force", {
13
13
  alias: "f",
14
14
  default: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "5.0.0-canary.2505",
3
+ "version": "5.0.0-canary.2507",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,17 +33,17 @@
33
33
  "dependencies": {
34
34
  "@babel/parser": "7.29.3",
35
35
  "@babel/preset-typescript": "7.28.5",
36
- "@cedarjs/api-server": "5.0.0-canary.2505",
37
- "@cedarjs/cli-helpers": "5.0.0-canary.2505",
38
- "@cedarjs/fastify-web": "5.0.0-canary.2505",
39
- "@cedarjs/internal": "5.0.0-canary.2505",
40
- "@cedarjs/prerender": "5.0.0-canary.2505",
41
- "@cedarjs/project-config": "5.0.0-canary.2505",
42
- "@cedarjs/structure": "5.0.0-canary.2505",
43
- "@cedarjs/telemetry": "5.0.0-canary.2505",
44
- "@cedarjs/utils": "5.0.0-canary.2505",
45
- "@cedarjs/vite": "5.0.0-canary.2505",
46
- "@cedarjs/web-server": "5.0.0-canary.2505",
36
+ "@cedarjs/api-server": "5.0.0-canary.2507",
37
+ "@cedarjs/cli-helpers": "5.0.0-canary.2507",
38
+ "@cedarjs/fastify-web": "5.0.0-canary.2507",
39
+ "@cedarjs/internal": "5.0.0-canary.2507",
40
+ "@cedarjs/prerender": "5.0.0-canary.2507",
41
+ "@cedarjs/project-config": "5.0.0-canary.2507",
42
+ "@cedarjs/structure": "5.0.0-canary.2507",
43
+ "@cedarjs/telemetry": "5.0.0-canary.2507",
44
+ "@cedarjs/utils": "5.0.0-canary.2507",
45
+ "@cedarjs/vite": "5.0.0-canary.2507",
46
+ "@cedarjs/web-server": "5.0.0-canary.2507",
47
47
  "@listr2/prompt-adapter-enquirer": "4.2.1",
48
48
  "@opentelemetry/api": "1.9.1",
49
49
  "@opentelemetry/core": "1.30.1",