Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
pavjacko committed Mar 7, 2024
1 parent 1e7f659 commit a354017
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/core/src/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,6 @@ const _overridePlugin = (c: RnvContext, pluginsPath: string, dir: string) => {
}

// const parentDest = path.join(dir, '..')
// console.log('SKSLSL', dir, dest);
};

export const overrideFileContents = (dest: string, override: Record<string, string>, overridePath = '') => {
Expand Down
2 changes: 0 additions & 2 deletions packages/sdk-apple/src/deviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ const _parseNewIOSDevicesList = (
}
return 'Apple Device';
};
console.log('SSSSSSS2', rawDevices);

return rawDevices.map((device) => {
const { DeviceName, ProductVersion, udid } = device;
Expand Down Expand Up @@ -201,7 +200,6 @@ export const launchAppleSimulator = async (c: RnvContext, target: string | boole
} else if (target !== true && target !== undefined) {
logWarning(`Your specified simulator target ${chalk().bold(target)} doesn't exist`);
}
console.log('SSSSSSS3', devicesArr);

const devices = devicesArr.map((v) => ({
name: `${v.name} | ${v.icon} | v: ${chalk().green(v.version)} | udid: ${chalk().grey(v.udid)}${
Expand Down

0 comments on commit a354017

Please sign in to comment.