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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
i have turborepo with bun package manager but i think the module federation dts plugin not support the bun package manager? the function in https://github.com/module-federation/core/blob/main/packages/dts-plugin/src/core/lib/typeScriptCompiler.ts around this function resolvePackageManagerExecutable only work for yarn and npm :
const resolvePackageManagerExecutable = () => {
const pm = getPMFromUserAgent();
switch (pm) {
case 'yarn':
return 'yarn';
case 'npm':
case 'pnpm':
default:
return 'npx';
}
};
Beta Was this translation helpful? Give feedback.
All reactions