Skip to content

Commit

Permalink
fix: add node: prefix (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
karimfromjordan authored Oct 11, 2024
1 parent 9ca1cbc commit 912af6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/sirv-cli/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const sirv = require('sirv');
const colors = require('kleur');
const semiver = require('semiver');
const { resolve } = require('path');
const { readFileSync } = require('fs');
const { resolve } = require('node:path');
const { readFileSync } = require('node:fs');
const laccess = require('local-access');
const clear = require('console-clear');
const tinydate = require('tinydate');
Expand Down
4 changes: 2 additions & 2 deletions packages/sirv/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as fs from 'fs';
import { join, normalize, resolve } from 'path';
import * as fs from 'node:fs';
import { join, normalize, resolve } from 'node:path';
import { totalist } from 'totalist/sync';
import { parse } from '@polka/url';
import { lookup } from 'mrmime';
Expand Down

0 comments on commit 912af6f

Please sign in to comment.