JSPM

@module-federation/manifest

0.0.0-next-20240325030531
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1921092
  • Score
    100M100P100Q195539F
  • License MIT

Provide manifest/stats for webpack/rspack MF project .

Package Exports

  • @module-federation/manifest

Readme

@module-federation/manifest Documentation

Description

This package contains the manifest plugin for webpack/rspack internal.

Installation

npm install @module-federation/manifest

Usage

  1. replace expose options with container.options.exposes = containerManager.containerPluginExposesOptions;
import { ContainerManager } from '@module-federation/managers';
const containerManager = new ContainerManager();
containerManager.init(options);
// it will set expose name automatically
options.exposes = containerManager.containerPluginExposesOptions;
  1. use StatsPlugin in webpack.config.js
import { StatsPlugin } from '@module-federation/manifest';

new StatsPlugin(mfOptions, {
    pluginVersion: pkg.version,
    bundler: 'webpack',
  }).apply(compiler);