fix(rspack): Add missing return for rspack composoable plugin (#31372)
This was broken in https://github.com/nrwl/nx/pull/29691 it's missing this return.
This commit is contained in:
parent
ce9ff9220a
commit
1afe6acabe
@ -20,9 +20,8 @@ export async function readRspackOptions(
|
|||||||
const resolveConfig = async (
|
const resolveConfig = async (
|
||||||
config: unknown
|
config: unknown
|
||||||
): Promise<Configuration | Configuration[]> => {
|
): Promise<Configuration | Configuration[]> => {
|
||||||
let resolvedConfig: Configuration;
|
|
||||||
if (isNxRspackComposablePlugin(config)) {
|
if (isNxRspackComposablePlugin(config)) {
|
||||||
resolvedConfig = await config(
|
return await config(
|
||||||
{},
|
{},
|
||||||
{
|
{
|
||||||
// These values are only used during build-time, so passing stubs here just to read out
|
// These values are only used during build-time, so passing stubs here just to read out
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user