We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3811ebf commit fe4ca2eCopy full SHA for fe4ca2e
1 file changed
build-packages/check-license/index.ts
@@ -6,7 +6,7 @@ import bloakList from '@blueoak/list/index.json' with { type: 'json' };
6
// Permissive FLOSS licenses are ok, see https://blueoakcouncil.org/list for details.
7
const ALLOWED_STATUSES = new Set(['Model', 'Gold', 'Silver', 'Bronze']);
8
// 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)']);
+const ADDITIONAL_ALLOWED = new Set(['(BSD-3-Clause OR GPL-2.0)', 'CC-BY-3.0', 'CC-BY-4.0']);
10
const ALLOWED_LICENSES = new Set(
11
bloakList
12
.filter(({ name }) => ALLOWED_STATUSES.has(name))
0 commit comments