You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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.
The text was updated successfully, but these errors were encountered:
Currently we have some build options like those, try to clean it up.
The text was updated successfully, but these errors were encountered: