Use correct docker image.

This commit is contained in:
SamTV12345 2023-10-02 19:46:59 +02:00
parent d342b83b49
commit 752c0fa063
No known key found for this signature in database
GPG key ID: E63EEC7466038043
4 changed files with 5 additions and 5 deletions

View file

@ -111,7 +111,7 @@ exports.getPackages = async () => {
// * The `--no-production` flag is required (or the `NODE_ENV` environment variable must be
// unset or set to `development`) because otherwise `npm ls` will not mention any packages
// that are not included in `package.json` (which is expected to not exist).
const cmd = ['npm', 'ls', '--long', '--json', '--depth=0', '--no-production'];
const cmd = ['bun', 'ls', '--long', '--json', '--depth=0', '--no-production'];
const {dependencies = {}} = JSON.parse(await runCmd(cmd, {stdio: [null, 'string']}));
await Promise.all(Object.entries(dependencies).map(async ([pkg, info]) => {
if (!pkg.startsWith(exports.prefix)) {