diff --git a/src/cli.js b/src/cli.js index 03ecb19..28c7d30 100644 --- a/src/cli.js +++ b/src/cli.js @@ -1,7 +1,7 @@ #!/usr/bin/env node import { Command } from 'commander'; -import path from 'path'; +import path from 'node:path'; import scanner from './scanner.js'; import chalk from 'chalk'; diff --git a/src/scanner.js b/src/scanner.js index 4ac34fb..29bb8b4 100644 --- a/src/scanner.js +++ b/src/scanner.js @@ -1,8 +1,8 @@ -import fs from 'fs'; -import path from 'path'; +import fs from 'node:fs'; +import path from 'node:path'; import fg from 'fast-glob'; import ignore from 'ignore'; -import { execSync } from 'child_process'; +import { execSync } from 'node:child_process'; import chalk from 'chalk';