Skip to content

Commit bf7c417

Browse files
committed
Remove unused comments
1 parent bbca408 commit bf7c417

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

packages/cmake-rn/src/cli.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ program = program.action(
284284
);
285285

286286
// Perform post-build steps for each platform in sequence
287-
// console.log("📦 Writing prebuilds to:", prettyPath(out));
288287
for (const platform of platforms) {
289288
const relevantTriplets = tripletContexts.filter(({ triplet }) =>
290289
platformHasTriplet(platform, triplet),

packages/cmake-rn/src/platforms/apple.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,6 @@ export const platform: Platform<Triplet[], AppleOpts> = {
235235
);
236236
},
237237
async build({ spawn, triplet }, { build, target, configuration }) {
238-
// const outputPath = path.join(buildPath, `${triplet.replace(/;/g, "_")}-out`)
239238
// We expect the final application to sign these binaries
240239
if (target.length > 1) {
241240
throw new Error("Building for multiple targets is not supported yet");
@@ -281,9 +280,6 @@ export const platform: Platform<Triplet[], AppleOpts> = {
281280
scheme,
282281
"-configuration",
283282
configuration,
284-
285-
// Ideally, we would just pass -destination here,
286-
// but I'm not able to configure / generate a single Xcode project supporting all
287283
"-destination",
288284
DESTINATION_BY_TRIPLET[triplet],
289285
],
@@ -297,9 +293,6 @@ export const platform: Platform<Triplet[], AppleOpts> = {
297293
scheme,
298294
"-configuration",
299295
configuration,
300-
301-
// Ideally, we would just pass -destination here,
302-
// but I'm not able to configure / generate a single Xcode project supporting all
303296
"-destination",
304297
DESTINATION_BY_TRIPLET[triplet],
305298
],

0 commit comments

Comments
 (0)