-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
license file glob question #15
Comments
I don't think there's a proper standard, more of a de-facto standard, which is to name your license files with |
Closest thing I can find to something that looks like an attempt to fit a machine usable pattern is https://softwareengineering.stackexchange.com/questions/304874/declaring-multiple-licences-in-a-github-project/371435#371435 Which suggests that this project should be processing a README* file in the package root for a |
Similarly https://docs.npmjs.com/files/package.json#license says that the license property should be a SPDX expression and that the array format is deprecated. It further suggests that license files may have any extension:
It is not immediately clear to me that this indicates multiple licenses will be included in the package by default when they each meet that requirement (either "LICENSE" or "LICENCE" or "LICENSE.*" or "LICENCE.*") but judging from various stack exchange posts this seems reasonable. |
Perhaps there should be changes made to this project in light of the above:
|
|
A PR for point 1. #32 |
I'm following angular/angular-cli#16291 with respect to angular/angular-cli#14095 (comment) and note that the https://github.com/iconic/open-iconic package utilizes a pair of licenses with files ./FONT-LICENSE and ./ICON-LICENSE which are not picked up by this tool because the file glob https://github.com/microsoft/license-checker-webpack-plugin/blob/master/src/licenseUtils.js#L12 is for files starting with LICENSE and doesn't match those.
Is there any available standard for how license files should be named, and if so is there a bug in this glob or over in open-iconic?
The text was updated successfully, but these errors were encountered: