From fa8e0865dc2b22aab9f173c5cf8f27636bf38057 Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Mon, 5 May 2025 04:03:22 -0700 Subject: [PATCH] Miscellaneous lint fixes Summary: Fix up some misc broken lints and add temporary suppressions to reduce noise in the subsequent stack. Changelog: [Internal] Reviewed By: huntie Differential Revision: D74141669 --- .../community-cli-plugin/src/commands/bundle/buildBundle.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/community-cli-plugin/src/commands/bundle/buildBundle.js b/packages/community-cli-plugin/src/commands/bundle/buildBundle.js index c18aa9bc06c..33180d7961e 100644 --- a/packages/community-cli-plugin/src/commands/bundle/buildBundle.js +++ b/packages/community-cli-plugin/src/commands/bundle/buildBundle.js @@ -104,6 +104,7 @@ async function buildBundleWithConfig( dev: args.dev, minify: args.minify !== undefined ? args.minify : !args.dev, platform: args.platform, + // $FlowFixMe[incompatible-type] Remove suppression after Metro 0.82.3 unstable_transformProfile: args.unstableTransformProfile, customResolverOptions, }; @@ -125,6 +126,7 @@ async function buildBundleWithConfig( await bundleImpl.save(bundle, args, console.info); // Save the assets of the bundle + // $FlowFixMe[prop-missing] Remove suppression after Metro 0.82.3 const outputAssets = await server.getAssets({ ...Server.DEFAULT_BUNDLE_OPTIONS, ...requestOpts,