diff --git a/server/src/runtime.ts b/server/src/runtime.ts index c003e9689..f6c31469e 100644 --- a/server/src/runtime.ts +++ b/server/src/runtime.ts @@ -383,6 +383,7 @@ export class ScryptedRuntime { async installNpm(pkg: string): Promise { const registry = (await axios(`https://registry.npmjs.org/${pkg}`)).data; const latest = registry['dist-tags'].latest; + console.log('latest package', pkg, latest); const tarball = (await axios(`${registry.versions[latest].dist.tarball}`, { responseType: 'arraybuffer'