Skip to content

Commit

Permalink
fix: use 'fs' and 'path' instead of 'node:fs' and 'node:path'
Browse files Browse the repository at this point in the history
  • Loading branch information
Shimada666 committed Aug 1, 2023
1 parent f352c74 commit b9cc4ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
const fs = require('node:fs')
const path = require('node:path')
// eslint-disable-next-line unicorn/prefer-node-protocol
const fs = require('fs')
// eslint-disable-next-line unicorn/prefer-node-protocol
const path = require('path')

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

Expand Down

0 comments on commit b9cc4ed

Please sign in to comment.