Skip to content

Commit 83453f7

Browse files
committed
Fix a couple broken imports
1 parent d5a2cdf commit 83453f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/update-library-files.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as fs from 'node:fs';
22
import * as pathUtil from 'node:path';
3-
import { computeMD5, computeSHA256, persistentFetch } from './lib.js';
3+
import { computeMD5, computeSHA256, persistentFetch } from './lib.mjs';
44

55
/**
66
* @typedef AssetMetadata

scripts/update-packager.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as fs from 'node:fs';
22
import * as pathUtil from 'node:path';
3-
import { computeSHA256, persistentFetch } from './lib.js';
3+
import { computeSHA256, persistentFetch } from './lib.mjs';
44

55
const run = async () => {
66
const releases = await (await persistentFetch('https://api.github.com/repos/TurboWarp/packager/releases')).json();

0 commit comments

Comments
 (0)