UNPKG

rollup-plugin-license

Version:

Rollup plugin to add license banner to the final bundle and output third party licenses

90 lines (78 loc) 2.79 kB
/** * The MIT License (MIT) * * Copyright (c) 2016 Mickael Jeanroy * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ 'use strict'; var LicensePlugin = require('./license-plugin.js'); module.exports = function () { var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; var plugin = new LicensePlugin(options); return { /** * Name of the plugin, used automatically by rollup. * @type {string} */ name: plugin.name, /** * Function called by rollup when a JS file is loaded: it is used to scan * third-party dependencies. * * @param {string} id JS file path. * @return {void} */ load: function load(id) { plugin.scanDependency(id); }, /** * Function called by rollup to read global options: if source map parameter * is truthy, enable it on the plugin. * * @param {object} opts Rollup options. * @return {void} */ options: function options(opts) { if (opts && opts.sourceMap) { plugin.enableSourceMap(); } }, /** * Function called by rollup when the final bundle is generated: it is used * to prepend the banner file on the generated bundle. * * @param {string} code Bundle content. * @return {void} */ transformBundle: function transformBundle(code) { return plugin.prependBanner(code); }, /** * Function called by rollup when the final bundle will be written on disk: it * is used to generate a file containing a summary of all third-party dependencies * with license information. * * @return {void} */ ongenerate: function ongenerate() { plugin.exportThirdParties(); } }; };