@module-federation/esbuild 0.0.0-next-20240528203231 → 0.0.0-next-20240529015908

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,7 +17,7 @@ To use the Module Federation plugin with esbuild, add it to your esbuild configu
17
17
  ```js
18
18
  const esbuild = require('esbuild');
19
19
  const path = require('path');
20
- const { moduleFederationPlugin } = require('@module-federation/esbuild/esbuild-adapter');
20
+ const { moduleFederationPlugin } = require('@module-federation/esbuild/plugin');
21
21
  const federationConfig = require('./federation.config.js');
22
22
 
23
23
  async function buildApp() {