All Projects → xz64 → License Webpack Plugin

xz64 / License Webpack Plugin

Licence: isc
Outputs licenses from 3rd party libraries to a file

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to License Webpack Plugin

Moment Timezone Data Webpack Plugin
Reduce moment-timezone data size for a webpack build
Stars: ✭ 80 (-31.62%)
Mutual labels:  webpack-plugin
Lc
licensechecker (lc) a command line application which scans directories and identifies what software license things are under producing reports as either SPDX, CSV, JSON, XLSX or CLI Tabular output. Dual-licensed under MIT or the UNLICENSE.
Stars: ✭ 93 (-20.51%)
Mutual labels:  license
Gas Webpack Plugin
Webpack plugin for Google Apps Script
Stars: ✭ 97 (-17.09%)
Mutual labels:  webpack-plugin
Page Builder
自定义页面构建平台
Stars: ✭ 81 (-30.77%)
Mutual labels:  webpack-plugin
Ngc Webpack
Angular compiler-cli with webpack's loader chain.
Stars: ✭ 87 (-25.64%)
Mutual labels:  webpack-plugin
Webpack Core Usage
webpack2完整系列课程,欢迎阅读。同时欢迎移步我的react全家桶文章全集: https://github.com/liangklfangl/react-article-bucket
Stars: ✭ 94 (-19.66%)
Mutual labels:  webpack-plugin
Wcer
Webpack plugin to enable reloading while developing Chrome extensions.
Stars: ✭ 71 (-39.32%)
Mutual labels:  webpack-plugin
Npm Install Webpack Plugin
Speed up development by automatically installing & saving dependencies with Webpack.
Stars: ✭ 1,441 (+1131.62%)
Mutual labels:  webpack-plugin
Jest Webpack
Use jest with webpack.
Stars: ✭ 89 (-23.93%)
Mutual labels:  webpack-plugin
Uglifyjs Webpack Plugin
[deprecated] UglifyJS Plugin
Stars: ✭ 1,343 (+1047.86%)
Mutual labels:  webpack-plugin
Google Fonts Plugin
Webpack plugin that downloads fonts from Google Fonts and encodes them to base64
Stars: ✭ 83 (-29.06%)
Mutual labels:  webpack-plugin
Auxpack
A dashboard for monitoring Webpack build stats.
Stars: ✭ 86 (-26.5%)
Mutual labels:  webpack-plugin
Truelicense
TrueLicense is an open source engine for license management on the JVM.
Stars: ✭ 94 (-19.66%)
Mutual labels:  license
Compression Webpack Plugin
Prepare compressed versions of assets to serve them with Content-Encoding
Stars: ✭ 1,228 (+949.57%)
Mutual labels:  webpack-plugin
New Idea Server
idea-license-server被封了,以后资源我都上传到百度云上,这里就不上传资源了,只做技术解答
Stars: ✭ 103 (-11.97%)
Mutual labels:  license
Svg Sprite Webpack Plugin
Webpack plugin for loading/extracting SVGs into a sprite file
Stars: ✭ 73 (-37.61%)
Mutual labels:  webpack-plugin
License Plate Detection
This project using yolo3 to detection license plate in street
Stars: ✭ 93 (-20.51%)
Mutual labels:  license
Sw Precache Webpack Plugin
Webpack plugin that generates a service worker using sw-precache that will cache webpack's bundles' emitted assets. You can optionally pass sw-precache configuration options to webpack through this plugin.
Stars: ✭ 1,444 (+1134.19%)
Mutual labels:  webpack-plugin
Webpack Tools
☕️Just a simple webpack sample project.
Stars: ✭ 106 (-9.4%)
Mutual labels:  webpack-plugin
Fork Ts Checker Webpack Plugin
Webpack plugin that runs typescript type checker on a separate process.
Stars: ✭ 1,343 (+1047.86%)
Mutual labels:  webpack-plugin

License Webpack Plugin

Build Status

Manage third-party license compliance in your webpack build.

Installation

npm install license-webpack-plugin --save-dev

Usage

To use the plugin, simply add it to the plugins section in the webpack config.

Example:

const LicenseWebpackPlugin = require('license-webpack-plugin').LicenseWebpackPlugin;

module.exports = {
  plugins: [
    new LicenseWebpackPlugin()
  ]
};

The default behavior will add a license notice file to each chunk of the webpack build. In addition, it will add a banner indicating the path to the license notice file in any Javascript assets. Third party libraries imported via external tools like SASS @import may not appear in the output (since webpack does not process @import). If this issue happens, please specify additional modules that the plugin should scan.

To configure the plugin, check the documentation.

Build Instructions

yarn
yarn build

Migration Guides

Migration guides for breaking changes are documented here.

Changelog

The changelog can be found here.

License

ISC

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].