refactor(docgen): use the node: protocol (#8034)

Co-authored-by: Synbulat Biishev <syjalo.dev@gmail.com>
This commit is contained in:
Superchupu
2022-06-07 23:17:48 +01:00
committed by GitHub
parent 314d76e907
commit ecc6600df2
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env node
import { readFileSync, writeFileSync } from 'fs';
import { join, basename, extname, dirname, relative } from 'path';
import { readFileSync, writeFileSync } from 'node:fs';
import { join, basename, extname, dirname, relative } from 'node:path';
import { createCommand } from 'commander';
import jsdoc2md from 'jsdoc-to-markdown';
import { Documentation } from './documentation.js';