I made some modification in the ng-admin source code, so I need to rebuild it using webpack.
I installed all node modules from the package.json with $ npm install
And then ran webpack -d
which used the webpack.config.js.
I removed the , exclude: /node_modules[\\\/](?!admin-config)/
because I need to rebuild admin-config too.
So now I have all the js, css and map files, but when I try to run the application I get this error:
Error: [$injector:modulerr] Failed to instantiate module ng-admin due to:
Error: [$injector:modulerr] Failed to instantiate module ui.select due to:
Error: [$injector:nomod] Module 'ui.select' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
I made sure ui.select is installed as a node module.
What went wrong?