fix: typo in import specifier (#17076)

This commit is contained in:
anatawa12 2026-01-07 20:40:14 +09:00 committed by GitHub
parent 38b3eecc8c
commit 2d709ceeb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { execSync } from 'note:child_process';
import * as fs from 'note:fs';
import { execSync } from 'node:child_process';
import * as fs from 'node:fs';
const __dirname = import.meta.dirname;

View File

@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import * as fs from 'note:fs';
import * as fs from 'node:fs';
const __dirname = import.meta.dirname;