A Webpack plugin that generates a JSON manifest file mapping entry points to their output asset paths, with paths relative to a configurable root directory. Version 1.0.1 is the latest stable release; the project appears to be in maintenance mode with no recent updates since 2016. Key differentiators: relative path normalization for easier deployment, distinct status fields (building/built/errors) to reflect build state, and integration with a companion Python manifest reader.
npm install webpack-yam-pluginNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic Webpack configuration with webpack-yam-plugin, including absolute manifestPath and outputRoot.
Use a maintained alternative like webpack-manifest-plugin or assets-webpack-plugin.
Always pass absolute paths using path.resolve().
Check manifest.status before using files; use 'built' status as ready indicator.
Ensure manifestPath is unique per compiler instance or use hook-based alternatives.
Run 'npm install webpack-yam-plugin' and ensure node_modules contains the package.
Use correct CommonJS import: 'const WebpackManifestPlugin = require('webpack-yam-plugin');'Use path.resolve() to convert relative path to absolute.
Wait for compilation finished hook or check manifest.status === 'built'.
No dependency data recorded yet.