Skip to content

Commit

Permalink
[clean] Avoid importing the entry point foe build-lib-types from `c…
Browse files Browse the repository at this point in the history
…lean-types`.
  • Loading branch information
lgarron committed Mar 17, 2024
1 parent a46eded commit e39f9f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion script/build/lib/clean-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { existsSync } from "node:fs";
import { rm, rmdir } from "node:fs/promises";
import { join } from "node:path";
import { packageNames } from "../common/package-info";
import { TYPESCRIPT_DECLARATION_INDEX } from "./build-lib-types";

export const TYPESCRIPT_DECLARATION_INDEX = "index.d.ts";

for (const packageName of packageNames) {
const indexFileName = join(packageName, TYPESCRIPT_DECLARATION_INDEX);
Expand Down

0 comments on commit e39f9f4

Please sign in to comment.