@cedarjs/cli 6.0.0-canary.2870 → 6.0.0-canary.2871

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.
@@ -3,6 +3,7 @@ import boxen from "boxen";
3
3
  import camelcase from "camelcase";
4
4
  import { Listr } from "listr2";
5
5
  import { recordTelemetryAttributes, colors as c } from "@cedarjs/cli-helpers";
6
+ import { formatCedarCommand } from "@cedarjs/cli-helpers/packageManager/display";
6
7
  import { generate as generateTypes } from "@cedarjs/internal/dist/generate/generate";
7
8
  import { getConfig } from "@cedarjs/project-config";
8
9
  import { errorTelemetry } from "@cedarjs/telemetry";
@@ -313,7 +314,9 @@ const handler = async ({
313
314
  );
314
315
  console.log(c.info("To replace a stub with a full SDL and service, run"));
315
316
  for (const stubModel of missingModels) {
316
- console.log(c.info(` yarn cedar generate sdl ${stubModel}`));
317
+ console.log(
318
+ c.info(` ${formatCedarCommand(["generate", "sdl", stubModel])}`)
319
+ );
317
320
  }
318
321
  }
319
322
  printRedactedFieldsNote(redactedFields);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "6.0.0-canary.2870",
3
+ "version": "6.0.0-canary.2871",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,17 +36,17 @@
36
36
  "@babel/preset-typescript": "7.29.7",
37
37
  "@babel/traverse": "7.29.7",
38
38
  "@babel/types": "7.29.7",
39
- "@cedarjs/api-server": "6.0.0-canary.2870",
40
- "@cedarjs/babel-config": "6.0.0-canary.2870",
41
- "@cedarjs/cli-helpers": "6.0.0-canary.2870",
42
- "@cedarjs/internal": "6.0.0-canary.2870",
43
- "@cedarjs/prerender": "6.0.0-canary.2870",
44
- "@cedarjs/project-config": "6.0.0-canary.2870",
45
- "@cedarjs/structure": "6.0.0-canary.2870",
46
- "@cedarjs/telemetry": "6.0.0-canary.2870",
47
- "@cedarjs/utils": "6.0.0-canary.2870",
48
- "@cedarjs/vite": "6.0.0-canary.2870",
49
- "@cedarjs/web-server": "6.0.0-canary.2870",
39
+ "@cedarjs/api-server": "6.0.0-canary.2871",
40
+ "@cedarjs/babel-config": "6.0.0-canary.2871",
41
+ "@cedarjs/cli-helpers": "6.0.0-canary.2871",
42
+ "@cedarjs/internal": "6.0.0-canary.2871",
43
+ "@cedarjs/prerender": "6.0.0-canary.2871",
44
+ "@cedarjs/project-config": "6.0.0-canary.2871",
45
+ "@cedarjs/structure": "6.0.0-canary.2871",
46
+ "@cedarjs/telemetry": "6.0.0-canary.2871",
47
+ "@cedarjs/utils": "6.0.0-canary.2871",
48
+ "@cedarjs/vite": "6.0.0-canary.2871",
49
+ "@cedarjs/web-server": "6.0.0-canary.2871",
50
50
  "@listr2/prompt-adapter-enquirer": "4.3.0",
51
51
  "@opentelemetry/api": "1.9.1",
52
52
  "@opentelemetry/core": "1.30.1",
@@ -94,7 +94,7 @@
94
94
  "yargs": "17.7.3"
95
95
  },
96
96
  "devDependencies": {
97
- "@cedarjs/framework-tools": "6.0.0-canary.2870",
97
+ "@cedarjs/framework-tools": "6.0.0-canary.2871",
98
98
  "@prisma/dmmf": "7.8.0",
99
99
  "@types/archiver": "^7.0.0",
100
100
  "memfs": "4.64.0",