Skip to content

Commit fe4ca2e

Browse files
davidkna-sapCopilot
andcommitted
fix: Add additional allowed licenses for package validation
Co-authored-by: Copilot <[email protected]>
1 parent 3811ebf commit fe4ca2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build-packages/check-license/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import bloakList from '@blueoak/list/index.json' with { type: 'json' };
66
// Permissive FLOSS licenses are ok, see https://blueoakcouncil.org/list for details.
77
const ALLOWED_STATUSES = new Set(['Model', 'Gold', 'Silver', 'Bronze']);
88
// Some packages have multiple licenses, and as long as one of them is acceptable, we allow it.
9-
const ADDITIONAL_ALLOWED = new Set(['(BSD-3-Clause OR GPL-2.0)']);
9+
const ADDITIONAL_ALLOWED = new Set(['(BSD-3-Clause OR GPL-2.0)', 'CC-BY-3.0', 'CC-BY-4.0']);
1010
const ALLOWED_LICENSES = new Set(
1111
bloakList
1212
.filter(({ name }) => ALLOWED_STATUSES.has(name))

0 commit comments

Comments
 (0)