build: fix docs:typ using wrong root dir (#1522)

This commit is contained in:
Andrew Voynov 2025-03-17 05:54:50 +03:00 committed by GitHub
parent 1e9fea0337
commit 47410c89e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,7 @@ import { resolve, basename } from "path";
import * as fs from "fs";
import { execSync } from "child_process";
const root = resolve(import.meta.dirname, "../..");
const root = resolve(import.meta.dirname, "..");
const dry = process.argv.includes("--dry");
const bytes2utf8 = new TextDecoder();