From 70a2a629d9ab07a3c3029693a4f32767dd6f389b Mon Sep 17 00:00:00 2001 From: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com> Date: Fri, 5 Apr 2024 12:29:32 -0700 Subject: [PATCH] fix ts-morph import --- cli/codegen.ts | 2 +- deno.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/codegen.ts b/cli/codegen.ts index cd3fd41..396e09e 100644 --- a/cli/codegen.ts +++ b/cli/codegen.ts @@ -15,7 +15,7 @@ * └── ./mod.ts */ -import { Project } from "ts_morph"; +import { Project } from "ts-morph"; import bcd from "@mdn/browser-compat-data" with { type: "json" }; /** diff --git a/deno.json b/deno.json index e8d8a5d..dd13765 100644 --- a/deno.json +++ b/deno.json @@ -4,7 +4,7 @@ "version": "0.0.1", "imports": { "@mdn/browser-compat-data": "npm:@mdn/browser-compat-data@^5.5.19", - "ts_morph": "https://deno.land/x/ts_morph@22.0.0/mod.ts" + "ts-morph": "npm:ts-morph@^22.0.0" }, "tasks": { "generate": "deno run -A cli/codegen.ts"