diff --git a/src/package.ts b/src/package.ts index ca5f9b02..b81403a0 100644 --- a/src/package.ts +++ b/src/package.ts @@ -832,7 +832,7 @@ class LicenseProcessor extends BaseProcessor { const match = /^SEE LICENSE IN (.*)$/.exec(manifest.license || ''); if (!match || !match[1]) { - this.expectedLicenseName = 'LICENSE.md or LICENSE.txt'; + this.expectedLicenseName = 'LICENSE.md, LICENSE.txt or LICENSE'; this.filter = name => /^extension\/license(\.(md|txt))?$/i.test(name); } else { this.expectedLicenseName = match[1];