Skip to content

Commit

Permalink
style: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ndhoule committed Oct 14, 2024
1 parent 8972e84 commit cf8cbf5
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions packages/build/src/plugins/resolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,27 @@ const handleMissingPlugins = async function ({ pluginsOptions, autoPluginsDir, m
return Promise.all(pluginsOptions.map((pluginOptions) => resolveMissingPluginPath({ pluginOptions, autoPluginsDir })))
}

const handleIntegrations = async function ({ integrations, autoPluginsDir, mode, logs, buildDir, context, testOpts, pluginsEnv }) {
const handleIntegrations = async function ({
integrations,
autoPluginsDir,
mode,
logs,
buildDir,
context,
testOpts,
pluginsEnv,
}) {
const toInstall = integrations.filter((integration) => integration.has_build)
await installIntegrationPlugins({ integrations: toInstall, autoPluginsDir, mode, logs, context, testOpts, buildDir, pluginsEnv })
await installIntegrationPlugins({
integrations: toInstall,
autoPluginsDir,
mode,
logs,
context,
testOpts,
buildDir,
pluginsEnv,
})

if (toInstall.length === 0) {
return []
Expand Down

0 comments on commit cf8cbf5

Please sign in to comment.