@cedarjs/cli 3.0.0-canary.13432 → 3.0.0-canary.13433

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.
@@ -4,7 +4,6 @@ import execa from "execa";
4
4
  import { Listr } from "listr2";
5
5
  import prompts from "prompts";
6
6
  import { addApiPackages } from "@cedarjs/cli-helpers";
7
- import { generate as generateTypes } from "@cedarjs/internal/dist/generate/generate";
8
7
  import { projectIsEsm } from "@cedarjs/project-config";
9
8
  import { errorTelemetry } from "@cedarjs/telemetry";
10
9
  import c from "../../../lib/colors.js";
@@ -321,7 +320,8 @@ async function handler(args) {
321
320
  {
322
321
  title: `Generating types...`,
323
322
  task: async () => {
324
- await generateTypes();
323
+ const { generate } = await import("@cedarjs/internal/dist/generate/generate");
324
+ await generate();
325
325
  console.log(
326
326
  "Note: You may need to manually restart GraphQL in VSCode to see the new types take effect.\n\n"
327
327
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "3.0.0-canary.13432+36ff51ded",
3
+ "version": "3.0.0-canary.13433+a0e872cdd",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,15 +34,15 @@
34
34
  "@babel/parser": "7.29.0",
35
35
  "@babel/preset-typescript": "7.28.5",
36
36
  "@babel/runtime-corejs3": "7.29.0",
37
- "@cedarjs/api-server": "3.0.0-canary.13432",
38
- "@cedarjs/cli-helpers": "3.0.0-canary.13432",
39
- "@cedarjs/fastify-web": "3.0.0-canary.13432",
40
- "@cedarjs/internal": "3.0.0-canary.13432",
41
- "@cedarjs/prerender": "3.0.0-canary.13432",
42
- "@cedarjs/project-config": "3.0.0-canary.13432",
43
- "@cedarjs/structure": "3.0.0-canary.13432",
44
- "@cedarjs/telemetry": "3.0.0-canary.13432",
45
- "@cedarjs/web-server": "3.0.0-canary.13432",
37
+ "@cedarjs/api-server": "3.0.0-canary.13433",
38
+ "@cedarjs/cli-helpers": "3.0.0-canary.13433",
39
+ "@cedarjs/fastify-web": "3.0.0-canary.13433",
40
+ "@cedarjs/internal": "3.0.0-canary.13433",
41
+ "@cedarjs/prerender": "3.0.0-canary.13433",
42
+ "@cedarjs/project-config": "3.0.0-canary.13433",
43
+ "@cedarjs/structure": "3.0.0-canary.13433",
44
+ "@cedarjs/telemetry": "3.0.0-canary.13433",
45
+ "@cedarjs/web-server": "3.0.0-canary.13433",
46
46
  "@listr2/prompt-adapter-enquirer": "2.0.16",
47
47
  "@opentelemetry/api": "1.9.0",
48
48
  "@opentelemetry/core": "1.30.1",
@@ -106,5 +106,5 @@
106
106
  "publishConfig": {
107
107
  "access": "public"
108
108
  },
109
- "gitHead": "36ff51ded29b350b7b7fdfce29c04e0d46cf9f2e"
109
+ "gitHead": "a0e872cddd2bdc77a21b56e7b73529637933400a"
110
110
  }