We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068f10d commit 7bc65cbCopy full SHA for 7bc65cb
scripts/compare-builds/web.mjs
@@ -2,8 +2,8 @@ import { stat, readdir } from 'node:fs/promises';
2
import path from 'node:path';
3
import { fileURLToPath } from 'node:url';
4
5
-const BASE = fileURLToPath(import.meta.resolve('../../out'));
6
-const HEAD = fileURLToPath(import.meta.resolve('../../out'));
+const BASE = fileURLToPath(import.meta.resolve('../../out/base'));
+const HEAD = fileURLToPath(import.meta.resolve('../../out/head'));
7
const UNITS = ['B', 'KB', 'MB', 'GB'];
8
9
/**
0 commit comments