switch to license-webpack-plugin

This package is a bit more versatile. For example, it lets us include
the app's package too.

webpack-license-plugin had a bug that made it unusable anyway.
This commit is contained in:
David Lechner
2021-01-17 13:11:47 -06:00
parent 3a22b19f83
commit deac69fdab
4 changed files with 272 additions and 61 deletions
+1 -3
View File
@@ -9,10 +9,8 @@ export interface LicenseInfo {
readonly name: string;
readonly version: string;
readonly author: string | undefined;
readonly repository: string | null;
readonly source: string;
readonly license: string;
readonly licenseText: string | null;
readonly licenseText: string;
}
export type LicenseList = LicenseInfo[];