Skip to content

Commit

Permalink
use node:fs instead of fs
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Jan 6, 2025
1 parent 776467e commit b3e81c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/build.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from 'path';
import fs from 'fs';
import path from 'node:path';
import fs from 'node:fs';

import {execute} from './execute.js';
import {addElemIf, appendPathIfItExists, prependPathIfItExists} from './utils.js';
Expand Down

0 comments on commit b3e81c0

Please sign in to comment.