0.0.17 • Published 7 years ago

dependency-manifest-webpack-plugin v0.0.17

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

Dependency Manifest

This webpack plugin will create manifest file for all your dependencies.

The plugin will create a JSON from all the external dependencies used by your project from the entry point you defined in your webpack file.

Usage

In your webpack.config.js:

const DependencyManifestPlugin = require('dependency-manifest-webpack-plugin');

module.exports = {
    // ...
    plugins: [
        // ...
        new DependencyManifestPlugin({
            // These are the default values
            packageLocation: path.join(process.cwd(), 'package.json'),
            output: 'dependency-manifest.json',
        }),
    ],
};

The following will generate a manifest file with all the dependencies used by your project with it's versions.

Example:

{
    "muject": "1"
}
0.0.17

7 years ago

0.0.16

7 years ago

0.0.14

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.1

7 years ago