I've had to fork a package to fix a couple of issues it had and while npm install seems to complete and the package ends up in node_modules
I get build errors (could not resolve package) and red sqigglies in my typescript files:
I installed it like this:
npm install mjharper84/adal-angular4 --save
from
https://github.com/mjharper84/adal-angular4
My package json looks like:
"adal-angular4": "github:mjharper84/adal-angular4"
I have heard some prepublish script may need to run to build the package properly but I'm not sure how to implement it and can't find any examples. Any help appreciated

