I am trying to add the angular-ui-grid module from npm (or bower) to a mean.io package:
$ cd packages/custom/mypackage
$ npm install angular-ui-grid --save
I then added this line to to packages/custom/mypackage/public/index.js
import 'angular-ui-grid';
and this line to packages/custom/mypackage/app.js
MyPackage.angularDependencies(['ui.grid']);
This seems to import the JS, but not the CSS. How do I get it to also bring in the styles?