Bug Report or Feature Request (mark with an x)
- [ ] bug report -> please search issues before submitting
- [x] feature request
Desired functionality.
I think, it would be nice to set the pattern attribute of the LicenseWebpackPlugin plugin in the .angular-cli.json file. Here is an example:
{
"defaults": {
"build": {
"license": {
"pattern": "^(.*)$",
"unacceptablePattern": "^(GPL.*)$",
"abortOnUnacceptableLicense": true,
"includePackagesWithoutLicense": true
}
}
}
}
With this option we do not limit our to show only the (MIT|ISC|BSD.*) licenses and packages in the 3rdpartylicenses.txt file.
Bug Report or Feature Request (mark with an
x)Desired functionality.
I think, it would be nice to set the
patternattribute of the LicenseWebpackPlugin plugin in the .angular-cli.json file. Here is an example:{ "defaults": { "build": { "license": { "pattern": "^(.*)$", "unacceptablePattern": "^(GPL.*)$", "abortOnUnacceptableLicense": true, "includePackagesWithoutLicense": true } } } }With this option we do not limit our to show only the
(MIT|ISC|BSD.*)licenses and packages in the 3rdpartylicenses.txt file.