1
0
Files
VR-Web-Player/scripts/clean-build-output.mjs
Aiden fbfdc1c575
All checks were successful
Publish Pages / publish (push) Successful in 22s
Test / test (push) Successful in 11s
removed hand specific tracking
2026-06-11 16:51:42 +10:00

8 lines
266 B
JavaScript

import { rm } from 'node:fs/promises';
import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
const rootDir = dirname(dirname(fileURLToPath(import.meta.url)));
await rm(join(rootDir, 'vr180player'), { force: true, recursive: true });