chore(root): migrate build scripts and plugins to TypeScript (#1052)

This commit is contained in:
rahim
2026-03-19 22:58:38 -07:00
committed by GitHub
parent b7e6286233
commit 221bcc975a
13 changed files with 151 additions and 114 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import { mkdirSync, readFileSync, writeFileSync } from 'node:fs';
import { dirname, resolve } from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';
import ts from 'typescript';
import { resolveImports } from '../../build/plugins/resolve-css-imports.mjs';
import { resolveImports } from '../../build/plugins/resolve-css-imports.ts';
const __dirname = dirname(fileURLToPath(import.meta.url));
const ROOT = resolve(__dirname, '../..');