Need help with adding the angular-ui-grid module to a mean.io package:
$ cd packages/custom/mypackage
$ npm install angular-ui-grid --save
To import the JS, add this line to
packages/custom/mypackage/public/index.js
:
import 'angular-ui-grid';
And include this line in packages/custom/mypackage/app.js
:
MyPackage.angularDependencies(['ui.grid']);
The issue is that it imports the JS but not the CSS. How can I bring in the styles as well?