I have a .NET 5 web application using the DNX framework, and I want to run 'npm install', 'bower install' and others, whenever I build the project.
Right now I'm able to do so on publish, using 'prepublish', but it doesn't seem to work with 'prebuild', although I saw it is possible here
What I have now:
"scripts": {
"prepublish": [ "npm install", "bower install", "tsd install", "gulp min" ]
}