@cedarjs/cli 1.0.0-canary.12504 → 1.0.0-canary.12506

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 (42) hide show
  1. package/README.md +4 -4
  2. package/dist/commands/build.js +2 -2
  3. package/dist/commands/deploy/baremetal.js +1 -1
  4. package/dist/commands/deploy/flightcontrol.js +2 -2
  5. package/dist/commands/deploy/helpers/deployBuilder.js +2 -2
  6. package/dist/commands/deploy/render.js +2 -2
  7. package/dist/commands/deploy/serverless.js +2 -2
  8. package/dist/commands/deploy.js +2 -2
  9. package/dist/commands/destroy.js +2 -2
  10. package/dist/commands/dev.js +2 -2
  11. package/dist/commands/experimental.js +2 -2
  12. package/dist/commands/generate/dataMigration/dataMigration.js +2 -2
  13. package/dist/commands/generate/dbAuth/dbAuth.js +2 -2
  14. package/dist/commands/generate/function/function.js +2 -2
  15. package/dist/commands/generate/job/job.js +2 -2
  16. package/dist/commands/generate/ogImage/ogImage.js +2 -2
  17. package/dist/commands/generate/scaffold/scaffold.js +2 -2
  18. package/dist/commands/generate/script/script.js +2 -2
  19. package/dist/commands/generate/sdl/sdl.js +2 -2
  20. package/dist/commands/generate/secret/secret.js +2 -2
  21. package/dist/commands/generate/service/service.js +2 -2
  22. package/dist/commands/generate/yargsCommandHelpers.js +2 -2
  23. package/dist/commands/generate.js +2 -2
  24. package/dist/commands/info.js +2 -2
  25. package/dist/commands/lint.js +2 -2
  26. package/dist/commands/prismaHandler.js +1 -1
  27. package/dist/commands/serve.js +2 -2
  28. package/dist/commands/setup/auth/auth.js +2 -2
  29. package/dist/commands/setup/cache/cache.js +2 -2
  30. package/dist/commands/setup/deploy/deploy.js +2 -2
  31. package/dist/commands/setup/generator/generator.js +2 -2
  32. package/dist/commands/setup/graphql/graphql.js +2 -2
  33. package/dist/commands/setup/jobs/jobs.js +2 -2
  34. package/dist/commands/setup/middleware/middleware.js +2 -2
  35. package/dist/commands/setup/monitoring/monitoring.js +2 -2
  36. package/dist/commands/setup/monitoring/sentry/sentryHandler.js +1 -1
  37. package/dist/commands/setup/package/package.js +2 -2
  38. package/dist/commands/setup/ui/ui.js +2 -2
  39. package/dist/commands/setup.js +2 -2
  40. package/dist/commands/test.js +2 -2
  41. package/dist/commands/type-check.js +2 -2
  42. package/package.json +11 -11
package/README.md CHANGED
@@ -309,8 +309,8 @@ export const builder = (yargs) =>
309
309
  .demandCommand()
310
310
  .epilogue(
311
311
  `Also see the ${terminalLink(
312
- 'Redwood CLI Reference',
313
- 'https://redwoodjs.com/docs/cli-commands#generate-alias-g',
312
+ 'CedarJS CLI Reference',
313
+ 'https://cedarjs.com/docs/cli-commands#generate-alias-g',
314
314
  )}`,
315
315
  )
316
316
  ```
@@ -493,8 +493,8 @@ export const builder = (yargs) => {
493
493
  })
494
494
  .epilogue(
495
495
  `Also see the ${terminalLink(
496
- 'Redwood CLI Reference',
497
- 'https://redwoodjs.com/docs/cli-commands#generate-sdl',
496
+ 'CedarJS CLI Reference',
497
+ 'https://cedarjs.com/docs/cli-commands#generate-sdl',
498
498
  )}`,
499
499
  )
500
500
  Object.entries(defaults).forEach(([option, config]) => {
@@ -37,8 +37,8 @@ const builder = (yargs) => {
37
37
  });
38
38
  }).epilogue(
39
39
  `Also see the ${terminalLink(
40
- "Redwood CLI Reference",
41
- "https://redwoodjs.com/docs/cli-commands#build"
40
+ "CedarJS CLI Reference",
41
+ "https://cedarjs.com/docs/cli-commands#build"
42
42
  )}`
43
43
  );
44
44
  };
@@ -73,7 +73,7 @@ const builder = (yargs) => {
73
73
  yargs.epilogue(
74
74
  `Also see the ${terminalLink(
75
75
  "Redwood Baremetal Deploy Reference",
76
- "https://redwoodjs.com/docs/cli-commands#deploy"
76
+ "https://cedarjs.com/docs/cli-commands#deploy"
77
77
  )}
78
78
  `
79
79
  );
@@ -22,8 +22,8 @@ const builder = (yargs) => {
22
22
  alias: "dm"
23
23
  }).epilogue(
24
24
  `For more commands, options, and examples, see ${terminalLink(
25
- "Redwood CLI Reference",
26
- "https://redwoodjs.com/docs/cli-commands#deploy"
25
+ "CedarJS CLI Reference",
26
+ "https://cedarjs.com/docs/cli-commands#deploy"
27
27
  )}`
28
28
  );
29
29
  return yargs;
@@ -15,8 +15,8 @@ const deployBuilder = (yargs) => {
15
15
  alias: "dm"
16
16
  }).epilogue(
17
17
  `For more commands, options, and examples, see ${terminalLink(
18
- "Redwood CLI Reference",
19
- "https://redwoodjs.com/docs/cli-commands#deploy"
18
+ "CedarJS CLI Reference",
19
+ "https://cedarjs.com/docs/cli-commands#deploy"
20
20
  )}`
21
21
  );
22
22
  };
@@ -20,8 +20,8 @@ const builder = (yargs) => {
20
20
  alias: "dm"
21
21
  }).epilogue(
22
22
  `For more commands, options, and examples, see ${terminalLink(
23
- "Redwood CLI Reference",
24
- "https://redwoodjs.com/docs/cli-commands#deploy"
23
+ "CedarJS CLI Reference",
24
+ "https://cedarjs.com/docs/cli-commands#deploy"
25
25
  )}`
26
26
  );
27
27
  };
@@ -32,8 +32,8 @@ const builder = (yargs) => {
32
32
  });
33
33
  yargs.epilogue(
34
34
  `Also see the ${terminalLink(
35
- "Redwood CLI Reference",
36
- "https://redwoodjs.com/docs/cli-commands#deploy"
35
+ "CedarJS CLI Reference",
36
+ "https://cedarjs.com/docs/cli-commands#deploy"
37
37
  )}
38
38
  `
39
39
  );
@@ -9,8 +9,8 @@ const command = "deploy <target>";
9
9
  const description = "Deploy your Redwood project";
10
10
  const builder = (yargs) => yargs.command(deployBaremetal).command(deployFlightcontrol).command(deployNetlify).command(deployRender).command(deployServerless).command(deployVercel).demandCommand().epilogue(
11
11
  `Also see the ${terminalLink(
12
- "Redwood CLI Reference",
13
- "https://redwoodjs.com/docs/cli-commands#deploy"
12
+ "CedarJS CLI Reference",
13
+ "https://cedarjs.com/docs/cli-commands#deploy"
14
14
  )}
15
15
  `
16
16
  );
@@ -13,8 +13,8 @@ const aliases = ["d"];
13
13
  const description = "Rollback changes made by the generate command";
14
14
  const builder = (yargs) => yargs.command(destroyCell).command(destroyComponent).command(destroyDirective).command(destroyFunction).command(destroyLayout).command(destroyPage).command(destroyScaffold).command(destroySdl).command(destroyService).demandCommand().epilogue(
15
15
  `Also see the ${terminalLink(
16
- "Redwood CLI Reference",
17
- "https://redwoodjs.com/docs/cli-commands#destroy-alias-d"
16
+ "CedarJS CLI Reference",
17
+ "https://cedarjs.com/docs/cli-commands#destroy-alias-d"
18
18
  )}`
19
19
  );
20
20
  export {
@@ -30,8 +30,8 @@ const builder = (yargs) => {
30
30
  `);
31
31
  }).epilogue(
32
32
  `Also see the ${terminalLink(
33
- "Redwood CLI Reference",
34
- "https://redwoodjs.com/docs/cli-commands#dev"
33
+ "CedarJS CLI Reference",
34
+ "https://cedarjs.com/docs/cli-commands#dev"
35
35
  )}`
36
36
  );
37
37
  };
@@ -10,8 +10,8 @@ const aliases = ["exp"];
10
10
  const description = "Run or setup experimental features";
11
11
  const builder = (yargs) => yargs.command(experimentalInngest).command(experimentalOpenTelemetry).command(experimentalReactCompiler).command(experimentalRsc).command(experimentalStreamingSsr).demandCommand().middleware(detectRxVersion).epilogue(
12
12
  `Also see the ${terminalLink(
13
- "Redwood CLI Reference",
14
- "https://redwoodjs.com/docs/cli-commands#experimental"
13
+ "CedarJS CLI Reference",
14
+ "https://cedarjs.com/docs/cli-commands#experimental"
15
15
  )}`
16
16
  );
17
17
  export {
@@ -53,8 +53,8 @@ const builder = (yargs) => {
53
53
  default: true
54
54
  }).epilogue(
55
55
  `Also see the ${terminalLink(
56
- "Redwood CLI Reference",
57
- "https://redwoodjs.com/docs/cli-commands#generate-datamigration"
56
+ "CedarJS CLI Reference",
57
+ "https://cedarjs.com/docs/cli-commands#generate-datamigration"
58
58
  )}`
59
59
  );
60
60
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -38,8 +38,8 @@ const builder = (yargs) => {
38
38
  default: true
39
39
  }).epilogue(
40
40
  `Also see the ${terminalLink(
41
- "Redwood CLI Reference",
42
- "https://redwoodjs.com/docs/authentication#self-hosted-auth-installation-and-setup"
41
+ "CedarJS dbAuth Reference",
42
+ "https://redwoodjs.com/docs/auth/dbauth"
43
43
  )}`
44
44
  );
45
45
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -12,8 +12,8 @@ const builder = (yargs) => {
12
12
  default: true
13
13
  }).epilogue(
14
14
  `Also see the ${terminalLink(
15
- "Redwood CLI Reference",
16
- "https://redwoodjs.com/docs/cli-commands#generate-function"
15
+ "CedarJS CLI Reference",
16
+ "https://cedarjs.com/docs/cli-commands#generate-function"
17
17
  )}`
18
18
  );
19
19
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -22,8 +22,8 @@ const builder = (yargs) => {
22
22
  default: true
23
23
  }).epilogue(
24
24
  `Also see the ${terminalLink(
25
- "Redwood CLI Reference",
26
- "https://redwoodjs.com/docs/cli-commands#generate-job"
25
+ "CedarJS CLI Reference",
26
+ "https://cedarjs.com/docs/cli-commands#generate-job"
27
27
  )}`
28
28
  );
29
29
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -10,8 +10,8 @@ const builder = (yargs) => {
10
10
  type: "string"
11
11
  }).epilogue(
12
12
  `Also see the ${terminalLink(
13
- "Redwood CLI Reference",
14
- `https://redwoodjs.com/docs/cli-commands#generate-og-image`
13
+ "CedarJS CLI Reference",
14
+ `https://cedarjs.com/docs/cli-commands#generate-og-image`
15
15
  )}`
16
16
  ).option("typescript", {
17
17
  alias: "ts",
@@ -21,8 +21,8 @@ const builder = (yargs) => {
21
21
  default: true
22
22
  }).epilogue(
23
23
  `Also see the ${terminalLink(
24
- "Redwood CLI Reference",
25
- "https://redwoodjs.com/docs/cli-commands#generate-scaffold"
24
+ "CedarJS CLI Reference",
25
+ "https://cedarjs.com/docs/cli-commands#generate-scaffold"
26
26
  )}`
27
27
  );
28
28
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -12,8 +12,8 @@ const builder = (yargs) => {
12
12
  default: true
13
13
  }).epilogue(
14
14
  `Also see the ${terminalLink(
15
- "Redwood CLI Reference",
16
- "https://redwoodjs.com/docs/cli-commands#generate-script"
15
+ "CedarJS CLI Reference",
16
+ "https://cedarjs.com/docs/cli-commands#generate-script"
17
17
  )}`
18
18
  );
19
19
  Object.entries(getYargsDefaults()).forEach(([option, config]) => {
@@ -30,8 +30,8 @@ const builder = (yargs) => {
30
30
  default: true
31
31
  }).epilogue(
32
32
  `Also see the ${terminalLink(
33
- "Redwood CLI Reference",
34
- "https://redwoodjs.com/docs/cli-commands#generate-sdl"
33
+ "CedarJS CLI Reference",
34
+ "https://cedarjs.com/docs/cli-commands#generate-sdl"
35
35
  )}`
36
36
  );
37
37
  Object.entries(getDefaults()).forEach(([option, config]) => {
@@ -19,8 +19,8 @@ const builder = (yargs) => yargs.option("length", {
19
19
  default: false
20
20
  }).epilogue(
21
21
  `Also see the ${terminalLink(
22
- "Redwood CLI Reference",
23
- "https://redwoodjs.com/docs/cli-commands#generate-secret"
22
+ "CedarJS CLI Reference",
23
+ "https://cedarjs.com/docs/cli-commands#generate-secret"
24
24
  )}`
25
25
  );
26
26
  const handler = ({ length, raw }) => {
@@ -32,8 +32,8 @@ const builder = (yargs) => {
32
32
  default: true
33
33
  }).epilogue(
34
34
  `Also see the ${terminalLink(
35
- "Redwood CLI Reference",
36
- "https://redwoodjs.com/docs/cli-commands#generate-service"
35
+ "CedarJS CLI Reference",
36
+ "https://cedarjs.com/docs/cli-commands#generate-service"
37
37
  )}`
38
38
  );
39
39
  Object.entries(defaults()).forEach(([option, config]) => {
@@ -35,8 +35,8 @@ function createBuilder({ componentName, optionsObj, positionalsObj }) {
35
35
  type: "string"
36
36
  }).epilogue(
37
37
  `Also see the ${terminalLink(
38
- "Redwood CLI Reference",
39
- `https://redwoodjs.com/docs/cli-commands#generate-${componentName}`
38
+ "CedarJS CLI Reference",
39
+ `https://cedarjs.com/docs/cli-commands#generate-${componentName}`
40
40
  )}`
41
41
  ).option("tests", {
42
42
  description: "Generate test files",
@@ -32,8 +32,8 @@ const builder = (yargs) => yargs.command("types", "Generate supplementary code",
32
32
  }
33
33
  }).command(generateCell).command(generateComponent).command(generateDataMigration).command(generateDbAuth).command(generateDirective).command(generateFunction).command(generateJob).command(generateLayout).command(generateModel).command(generateOgImage).command(generatePage).command(generateRealtime).command(generateScaffold).command(generateScript).command(generateSdl).command(generateSecret).command(generateService).demandCommand().epilogue(
34
34
  `Also see the ${terminalLink(
35
- "Redwood CLI Reference",
36
- "https://redwoodjs.com/docs/cli-commands#generate-alias-g"
35
+ "CedarJS CLI Reference",
36
+ "https://cedarjs.com/docs/cli-commands#generate-alias-g"
37
37
  )}`
38
38
  );
39
39
  export {
@@ -8,8 +8,8 @@ const description = "Print your system environment information";
8
8
  const builder = (yargs) => {
9
9
  yargs.epilogue(
10
10
  `Also see the ${terminalLink(
11
- "Redwood CLI Reference",
12
- "https://redwoodjs.com/docs/cli-commands#info"
11
+ "CedarJS CLI Reference",
12
+ "https://cedarjs.com/docs/cli-commands#info"
13
13
  )}`
14
14
  );
15
15
  };
@@ -15,8 +15,8 @@ const builder = (yargs) => {
15
15
  type: "boolean"
16
16
  }).epilogue(
17
17
  `Also see the ${terminalLink(
18
- "Redwood CLI Reference",
19
- "https://redwoodjs.com/docs/cli-commands#lint"
18
+ "CedarJS CLI Reference",
19
+ "https://cedarjs.com/docs/cli-commands#lint"
20
20
  )}`
21
21
  );
22
22
  };
@@ -75,7 +75,7 @@ const printWrapInfo = () => {
75
75
  "Use `yarn prisma` to skip Redwood CLI automatic options.",
76
76
  "",
77
77
  "Find more information in our docs:",
78
- c.underline("https://redwoodjs.com/docs/cli-commands#prisma")
78
+ c.underline("https://cedarjs.com/docs/cli-commands#prisma")
79
79
  ];
80
80
  console.log(
81
81
  boxen(message.join("\n"), {
@@ -127,8 +127,8 @@ const builder = async (yargs) => {
127
127
  }
128
128
  }).epilogue(
129
129
  `Also see the ${terminalLink(
130
- "Redwood CLI Reference",
131
- "https://redwoodjs.com/docs/cli-commands#serve"
130
+ "CedarJS CLI Reference",
131
+ "https://cedarjs.com/docs/cli-commands#serve"
132
132
  )}`
133
133
  );
134
134
  };
@@ -12,8 +12,8 @@ const description = "Set up an auth configuration";
12
12
  async function builder(yargs) {
13
13
  yargs.demandCommand().epilogue(
14
14
  `Also see the ${terminalLink(
15
- "Redwood CLI Reference",
16
- "https://redwoodjs.com/docs/cli-commands#setup-auth"
15
+ "CedarJS CLI Reference",
16
+ "https://cedarjs.com/docs/cli-commands#setup-auth"
17
17
  )}`
18
18
  ).command(...directToCustomAuthCommand("ethereum")).command(...directToCustomAuthCommand("goTrue")).command(...directToCustomAuthCommand("magicLink")).command(...directToCustomAuthCommand("nhost")).command(...directToCustomAuthCommand("okta")).command(
19
19
  "auth0",
@@ -15,8 +15,8 @@ const builder = (yargs) => {
15
15
  type: "boolean"
16
16
  }).epilogue(
17
17
  `Also see the ${terminalLink(
18
- "Redwood CLI Reference",
19
- "https://redwoodjs.com/docs/cli-commands#setup-cache"
18
+ "CedarJS CLI Reference",
19
+ "https://cedarjs.com/docs/cli-commands#setup-cache"
20
20
  )}`
21
21
  );
22
22
  };
@@ -15,8 +15,8 @@ const builder = (yargs) => yargs.command(setupDeployBaremetal).command(setupDepl
15
15
  type: "boolean"
16
16
  }).epilogue(
17
17
  `Also see the ${terminalLink(
18
- "Redwood CLI Reference",
19
- "https://redwoodjs.com/docs/cli-commands#setup-deploy-config"
18
+ "CedarJS CLI Reference",
19
+ "https://cedarjs.com/docs/cli-commands#setup-deploy-config"
20
20
  )}`
21
21
  );
22
22
  export {
@@ -27,8 +27,8 @@ const builder = (yargs) => {
27
27
  type: "boolean"
28
28
  }).epilogue(
29
29
  `Also see the ${terminalLink(
30
- "Redwood CLI Reference",
31
- "https://redwoodjs.com/docs/cli-commands#setup-generator"
30
+ "CedarJS CLI Reference",
31
+ "https://cedarjs.com/docs/cli-commands#setup-generator"
32
32
  )}`
33
33
  );
34
34
  };
@@ -6,8 +6,8 @@ const description = "Set up GraphQL feature support";
6
6
  function builder(yargs) {
7
7
  return yargs.command(fragmentsCommand).command(trustedDocumentsCommand).epilogue(
8
8
  `Also see the ${terminalLink(
9
- "Redwood CLI Reference",
10
- "https://redwoodjs.com/docs/cli-commands#setup-graphql"
9
+ "CedarJS CLI Reference",
10
+ "https://cedarjs.com/docs/cli-commands#setup-graphql"
11
11
  )}`
12
12
  );
13
13
  }
@@ -10,8 +10,8 @@ const builder = (yargs) => {
10
10
  type: "boolean"
11
11
  }).epilogue(
12
12
  `Also see the ${terminalLink(
13
- "Redwood CLI Reference",
14
- "https://redwoodjs.com/docs/cli-commands#setup-jobs"
13
+ "CedarJS CLI Reference",
14
+ "https://cedarjs.com/docs/cli-commands#setup-jobs"
15
15
  )}`
16
16
  );
17
17
  };
@@ -5,8 +5,8 @@ const description = "Set up a middleware";
5
5
  function builder(yargs) {
6
6
  return yargs.command(ogImageCommand).epilogue(
7
7
  `Also see the ${terminalLink(
8
- "Redwood CLI Reference",
9
- "https://redwoodjs.com/docs/cli-commands"
8
+ "CedarJS CLI Reference",
9
+ "https://cedarjs.com/docs/cli-commands"
10
10
  )}`
11
11
  );
12
12
  }
@@ -5,8 +5,8 @@ const description = "Set up monitoring in your Redwood app";
5
5
  function builder(yargs) {
6
6
  return yargs.command(sentryCommand).epilogue(
7
7
  `Also see the ${terminalLink(
8
- "Redwood CLI Reference",
9
- "https://redwoodjs.com/docs/cli-commands#setup-graphql"
8
+ "CedarJS CLI Reference",
9
+ "https://cedarjs.com/docs/cli-commands#setup-graphql"
10
10
  )}`
11
11
  );
12
12
  }
@@ -128,7 +128,7 @@ const handler = async ({ force }) => {
128
128
  notes.push(
129
129
  `${colors.underline(
130
130
  "Make sure you implement the Sentry Envelop plugin:"
131
- )} https://redwoodjs.com/docs/cli-commands#sentry-envelop-plugin`
131
+ )} https://cedarjs.com/docs/cli-commands#sentry-envelop-plugin`
132
132
  );
133
133
  } else {
134
134
  notes.push(
@@ -13,8 +13,8 @@ const builder = (yargs) => {
13
13
  alias: "f"
14
14
  }).epilogue(
15
15
  `Also see the ${terminalLink(
16
- "Redwood CLI Reference",
17
- "https://redwoodjs.com/docs/cli-commands#lint"
16
+ "CedarJS CLI Reference",
17
+ "https://cedarjs.com/docs/cli-commands#lint"
18
18
  )}`
19
19
  );
20
20
  };
@@ -6,8 +6,8 @@ const command = "ui <library>";
6
6
  const description = "Set up a UI design or style library";
7
7
  const builder = (yargs) => yargs.command(libraryChakraUi).command(libraryMantine).command(libraryTailwindCss).demandCommand().epilogue(
8
8
  `Also see the ${terminalLink(
9
- "Redwood CLI Reference",
10
- "https://redwoodjs.com/docs/cli-commands#setup-ui"
9
+ "CedarJS CLI Reference",
10
+ "https://cedarjs.com/docs/cli-commands#setup-ui"
11
11
  )}`
12
12
  );
13
13
  export {
@@ -22,8 +22,8 @@ const command = "setup <command>";
22
22
  const description = "Initialize project config and install packages";
23
23
  const builder = (yargs) => yargs.command(setupAuth).command(setupCache).command(setupDeploy).command(setupDocker).command(setupGenerator).command(setupGraphql).command(setupI18n).command(setupJobs).command(setupMailer).command(setupMiddleware).command(setupMonitoring).command(setupPackage).command(setupRealtime).command(setupServerFile).command(setupTsconfig).command(setupUi).command(setupUploads).command(setupVite).demandCommand().middleware(detectRxVersion).epilogue(
24
24
  `Also see the ${terminalLink(
25
- "Redwood CLI Reference",
26
- "https://redwoodjs.com/docs/cli-commands#setup"
25
+ "CedarJS CLI Reference",
26
+ "https://cedarjs.com/docs/cli-commands#setup"
27
27
  )}`
28
28
  );
29
29
  export {
@@ -26,8 +26,8 @@ const builder = (yargs) => {
26
26
  )}
27
27
 
28
28
  Also see the ${terminalLink(
29
- "Redwood CLI Reference",
30
- "https://redwoodjs.com/docs/cli-commands#test"
29
+ "CedarJS CLI Reference",
30
+ "https://cedarjs.com/docs/cli-commands#test"
31
31
  )}
32
32
  `
33
33
  );
@@ -23,8 +23,8 @@ const builder = (yargs) => {
23
23
  type: "boolean"
24
24
  }).epilogue(
25
25
  `Also see the ${terminalLink(
26
- "Redwood CLI Reference",
27
- "https://redwoodjs.com/docs/cli-commands#type-check"
26
+ "CedarJS CLI Reference",
27
+ "https://cedarjs.com/docs/cli-commands#type-check"
28
28
  )}`
29
29
  );
30
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "1.0.0-canary.12504+3c58ee9fb",
3
+ "version": "1.0.0-canary.12506+181d32a5c",
4
4
  "description": "The Redwood Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,15 +31,15 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@babel/runtime-corejs3": "7.27.6",
34
- "@cedarjs/api-server": "1.0.0-canary.12504",
35
- "@cedarjs/cli-helpers": "1.0.0-canary.12504",
36
- "@cedarjs/fastify-web": "1.0.0-canary.12504",
37
- "@cedarjs/internal": "1.0.0-canary.12504",
38
- "@cedarjs/prerender": "1.0.0-canary.12504",
39
- "@cedarjs/project-config": "1.0.0-canary.12504",
40
- "@cedarjs/structure": "1.0.0-canary.12504",
41
- "@cedarjs/telemetry": "1.0.0-canary.12504",
42
- "@cedarjs/web-server": "1.0.0-canary.12504",
34
+ "@cedarjs/api-server": "1.0.0-canary.12506",
35
+ "@cedarjs/cli-helpers": "1.0.0-canary.12506",
36
+ "@cedarjs/fastify-web": "1.0.0-canary.12506",
37
+ "@cedarjs/internal": "1.0.0-canary.12506",
38
+ "@cedarjs/prerender": "1.0.0-canary.12506",
39
+ "@cedarjs/project-config": "1.0.0-canary.12506",
40
+ "@cedarjs/structure": "1.0.0-canary.12506",
41
+ "@cedarjs/telemetry": "1.0.0-canary.12506",
42
+ "@cedarjs/web-server": "1.0.0-canary.12506",
43
43
  "@listr2/prompt-adapter-enquirer": "2.0.16",
44
44
  "@opentelemetry/api": "1.8.0",
45
45
  "@opentelemetry/core": "1.22.0",
@@ -98,5 +98,5 @@
98
98
  "typescript": "5.6.2",
99
99
  "vitest": "3.2.4"
100
100
  },
101
- "gitHead": "3c58ee9fbc4386d92fbe4b058c1cebdd76bce92b"
101
+ "gitHead": "181d32a5c84dd3e08f2e31319d1f805c27d4fce9"
102
102
  }