Skip to content

Commit

Permalink
fix(cli): Remove extraneous console.log from debugging (#9188)
Browse files Browse the repository at this point in the history
**Problem**
I left in a console.log in #8920 which should have been removed before
merging

**Changes**
1. Removes the offending console.log
  • Loading branch information
Josh-Walker-GM authored and jtoar committed Sep 16, 2023
1 parent c834781 commit 61e116b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/cli/src/commands/setup/package/packageHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ export async function handler({ npmPackage, force, _: _args }) {
// Extract any additional arguments that came after a '--'
// See: https://github.com/yargs/yargs/blob/main/docs/tricks.md#stop-parsing
const additionalOptionsToForward = _args.slice(2) ?? []
console.log({
additionalOptionsToForward,
})

// If we're using force don't attempt anything fancy, just run the package after some messaging
if (force) {
Expand Down

0 comments on commit 61e116b

Please sign in to comment.