After encountering a few issues with a package, I had to fork it and make some fixes. Although the npm install process seems to go smoothly and the package appears in node_modules
https://i.sstatic.net/vpvP1.png
I am facing build errors (unable to resolve package) and seeing red squiggles in my typescript files:
https://i.sstatic.net/Y2oc4.png
This is how I installed it:
npm install mjharper84/adal-angular4 --save
from
https://github.com/mjharper84/adal-angular4
Here's what my package json looks like:
"adal-angular4": "github:mjharper84/adal-angular4"
I have heard that a prepublish script may be necessary to properly build the package, but I'm not sure how to execute it and couldn't find any examples. Any assistance would be greatly appreciated.