mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-02 09:29:13 +00:00
Add debugging
This commit is contained in:
parent
4b173cbfb3
commit
5b042f76a1
@ -184,8 +184,16 @@ public class NpmPackage {
|
|||||||
}
|
}
|
||||||
res.content.put("package/.index.json", indexer.build().getBytes(Charsets.UTF_8));
|
res.content.put("package/.index.json", indexer.build().getBytes(Charsets.UTF_8));
|
||||||
}
|
}
|
||||||
res.npm = JsonTrackingParser.parseJson(res.content.get("package/package.json"));
|
try {
|
||||||
res.readIndexFile((JsonObject) new com.google.gson.JsonParser().parse(new String(res.content.get("package/.index.json"))));
|
res.npm = JsonTrackingParser.parseJson(res.content.get("package/package.json"));
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new IOException("Error parsing package/package.json: "+e.getMessage(), e);
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
res.readIndexFile((JsonObject) JsonTrackingParser.parseJson(new String(res.content.get("package/.index.json"))));
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new IOException("Error parsing package/.index.json: "+e.getMessage(), e);
|
||||||
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user