Skip to content

Commit

Permalink
remove extra console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zoey-kaiser committed Mar 29, 2024
1 parent f817786 commit fda7d60
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/addPackageDependency.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const addPackageDependencies = async (opts: {

const pathToPackageJson = resolve(`./${projectDir}/package.json`)
const packageJson = await readPackageJSON(pathToPackageJson)
console.log(packageJson)

for (const { name, version, isDev, isPeer } of dependencies) {
if (isDev) {
Expand Down Expand Up @@ -51,7 +50,6 @@ export const addPackageScripts = async (opts: {

const pathToPackageJson = resolve(`./${projectDir}/package.json`)
const packageJson = await readPackageJSON(pathToPackageJson)
console.log(packageJson)


for (const { name, command } of scripts) {
Expand Down

0 comments on commit fda7d60

Please sign in to comment.