Move subset folder into src folder

This commit is contained in:
Deepen Timalsina 2025-04-15 13:11:33 +05:45
parent 3f1bd9eb6f
commit 4a4f2c36dc
10 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import { promiseTry, LOCAL_FONT_PROTOCOL } from "@excalidraw/common"; import { promiseTry, LOCAL_FONT_PROTOCOL } from "@excalidraw/common";
import { subsetWoff2GlyphsByCodepoints } from "../subset/subset-main"; import { subsetWoff2GlyphsByCodepoints } from "../src/subset/subset-main";
type DataURL = string; type DataURL = string;

View file

@ -1,7 +1,10 @@
import { isServerEnv, promiseTry } from "@excalidraw/common"; import { isServerEnv, promiseTry } from "@excalidraw/common";
import { WorkerInTheMainChunkError, WorkerUrlNotDefinedError } from "../errors"; import {
import { WorkerPool } from "../workers"; WorkerInTheMainChunkError,
WorkerUrlNotDefinedError,
} from "../../errors";
import { WorkerPool } from "../../workers";
import type { Commands } from "./subset-shared.chunk"; import type { Commands } from "./subset-shared.chunk";