register spdx lib as ES Module, start converting call sites to use new spdx pkg - TODO: update tests

This commit is contained in:
Eli Reisman
2024-06-05 12:19:12 -07:00
parent bc5b235cf6
commit ecd706f525
7 changed files with 46 additions and 15 deletions

6
types/spdx-license-satisfies.d.ts vendored Normal file
View File

@@ -0,0 +1,6 @@
declare module '@onebeyond/spdx-license-satisfies' {
export function satisfies(
candidateExpr: string,
constraintExpr: string
): boolean
}