I have built a basic application form meanjs boilerplate code and trying to inject smart-table to display table data Below are the changes I have made but not sure why its not working
installed smart-table
bower install angular-smart-table
npm install
Added smart-table dependency in config.js
var applicationModuleVendorDependencies = ['ngResource', 'ngCookies', 'ngAnimate', 'ngTouch', 'ngSanitize', 'ui.router', 'ui.bootstrap', 'ui.utils', 'smart-table'];
Added location of smart-table js in env/all.js
'public/lib/angular-smart-table/smart-table.js'
Modified the controller.js to add smart-table as dependncy
angular.module('exceptions' ,['smart-table']).controller(.....
After step 4 my module does not get loaded I had tried with modifying client.module.js with adding below line as well but no luck
ApplicationConfiguration.registerModule('smart-table');
Can anyone please point me if I am missing anything or right way to inject 3rd party modules in MEANJS