├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── fixtures ├── license.ts ├── node_modules │ └── vendor │ │ ├── LICENSE │ │ ├── index.js │ │ └── package.json ├── src │ └── index.js └── webpack.config.js ├── package.json ├── renovate.json ├── src ├── index.ts ├── utils.test.ts └── utils.ts ├── test-v3 ├── package.json ├── v3.test.ts ├── webpack.config.js └── yarn.lock ├── test-v4 ├── package.json ├── v4.test.ts ├── webpack.config.js └── yarn.lock ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/license.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/fixtures/license.ts -------------------------------------------------------------------------------- /fixtures/node_modules/vendor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/fixtures/node_modules/vendor/LICENSE -------------------------------------------------------------------------------- /fixtures/node_modules/vendor/index.js: -------------------------------------------------------------------------------- 1 | module.exports = () => { 2 | return "vendor package"; 3 | }; 4 | -------------------------------------------------------------------------------- /fixtures/node_modules/vendor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/fixtures/node_modules/vendor/package.json -------------------------------------------------------------------------------- /fixtures/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/fixtures/src/index.js -------------------------------------------------------------------------------- /fixtures/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/fixtures/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/src/utils.test.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test-v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v3/package.json -------------------------------------------------------------------------------- /test-v3/v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v3/v3.test.ts -------------------------------------------------------------------------------- /test-v3/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v3/webpack.config.js -------------------------------------------------------------------------------- /test-v3/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v3/yarn.lock -------------------------------------------------------------------------------- /test-v4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v4/package.json -------------------------------------------------------------------------------- /test-v4/v4.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v4/v4.test.ts -------------------------------------------------------------------------------- /test-v4/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v4/webpack.config.js -------------------------------------------------------------------------------- /test-v4/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/test-v4/yarn.lock -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yami-beta/license-info-webpack-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------