Exempt package.json from being parsed as a FHIR resource
This commit is contained in:
parent
74b9488ffc
commit
271c0cf0fc
|
@ -747,7 +747,7 @@ public class ValidationEngine {
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean exemptFile(String fn) {
|
private boolean exemptFile(String fn) {
|
||||||
return Utilities.existsInList(fn, "spec.internals", "version.info", "schematron.zip");
|
return Utilities.existsInList(fn, "spec.internals", "version.info", "schematron.zip", "package.json");
|
||||||
}
|
}
|
||||||
|
|
||||||
private String readInfoVersion(byte[] bs) throws IOException {
|
private String readInfoVersion(byte[] bs) throws IOException {
|
||||||
|
|
Loading…
Reference in New Issue