// if no scopes, do them all!
if (
!builder.options.rpcClients.scoped ||
!builder.options.rpcClients.scoped.length
) {
// TODO inefficient
// WE SHOULD NOT DO THIS IN A BUNDLER LOOP
// MAKE SEPARATE PLUGIN
return makeAllRPCBundles(
builder,
bundler
);
}
if (!builder.options.rpcClients.scopedIsExclusive) {
// TODO inefficient
// WE SHOULD NOT DO THIS IN A BUNDLER LOOP
// MAKE SEPARATE PLUGIN
makeAllRPCBundles(
builder,
bundler
);
}
Currently we have some build options like those, try to clean it up.
Currently we have some build options like those, try to clean it up.