Skip to content

Commit 2242f50

Browse files
committed
[wip]
1 parent 27ca6f5 commit 2242f50

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

scripts/compare-builds/web.mjs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import { stat, readdir } from 'node:fs/promises';
22
import path from 'node:path';
3-
import { fileURLToPath } from 'node:url';
43

5-
const [BASE, HEAD] = ['BASE', 'HEAD'].map(env =>
6-
fileURLToPath(import.meta.resolve(`../../out/${process.env[env]}/web`))
7-
);
4+
const BASE = import.meta.resolve(`../../out/base`);
5+
const HEAD = import.meta.resolve(`../../out/head`);
86

97
/**
108
* Formats bytes into human-readable format

0 commit comments

Comments
 (0)