chore: remove console.log

This commit is contained in:
Igor Randjelovic
2020-11-22 13:19:00 +01:00
parent b29918f5a8
commit b2b06bade7

View File

@ -3,7 +3,6 @@ import path from 'path';
export function getAllDependencies(): string[] { export function getAllDependencies(): string[] {
const packageJSON = getPackageJson(); const packageJSON = getPackageJson();
console.log(packageJSON);
return [ return [
...Object.keys(packageJSON.dependencies ?? {}), ...Object.keys(packageJSON.dependencies ?? {}),