fix: add missing package (#3927)

This commit is contained in:
Alex Yang
2023-08-23 19:08:53 -05:00
committed by GitHub
parent 52f736fb77
commit 873d40d1c3
3 changed files with 6 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
// do not run in your local machine
/* eslint-disable */
const fs = require('fs');
const path = require('path');
const crypto = require('crypto');
const fs = require('node:fs');
const path = require('node:path');
const crypto = require('node:crypto');
const glob = require('glob');
/* eslint-enable */