Skip to content

Commit

Permalink
chore: remove console.log calls
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Oct 31, 2024
1 parent 496b566 commit 1648e19
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ async function getNodeManifest({
* @returns {any}

Check warning on line 167 in src/util.js

View workflow job for this annotation

GitHub Actions / tests (macos-14)

Missing JSDoc @returns description
*/
function str2Bool (option) {
console.log('debugg', option);
if (typeof option === 'string') {
if (option === 'true') {
return true;
Expand Down Expand Up @@ -206,7 +205,6 @@ export const parse = async (options, pkg) => {

options.argv = options.argv ?? [];
options.glob = str2Bool(options.glob) ?? true;
console.log('weee', str2Bool(options.glob));
options.srcDir = options.srcDir ?? (options.glob ? './*' : '.');

if (options.mode === 'run') {
Expand Down

0 comments on commit 1648e19

Please sign in to comment.