Skip to content

Commit b9cc4ed

Browse files
committed
fix: use 'fs' and 'path' instead of 'node:fs' and 'node:path'
1 parent f352c74 commit b9cc4ed

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/utils.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
const fs = require('node:fs')
2-
const path = require('node:path')
1+
// eslint-disable-next-line unicorn/prefer-node-protocol
2+
const fs = require('fs')
3+
// eslint-disable-next-line unicorn/prefer-node-protocol
4+
const path = require('path')
35

46
const dir = path.resolve(__dirname, '..', 'dist')
57

0 commit comments

Comments
 (0)