Compare commits

...
Author SHA1 Message Date
Rob HoganandFacebook GitHub Bot fa8e0865dc 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
2025-05-05 04:03:22 -07:00
@@ -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,