From ca46d8c11223b64bf7ec39255bc9c1439a5ce675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Tue, 2 Nov 2021 09:41:02 +0100 Subject: [PATCH] fixes #644 --- src/package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];