Open xswordsx opened 7 years ago
The license checker that npm uses - spdx - expects the conjuctive / disjunctive operators to be capital-cased in order to parse the license field correctly.
license
spdx.valid('(LGPL-2.0 or MIT)'); // => null spdx.valid('(LGPL-2.0 OR MIT)'); // => true
The license checker that npm uses - spdx - expects the conjuctive / disjunctive operators to be capital-cased in order to parse the
license
field correctly.