Using Angular Material MPM on Meteor 1.3

Does anyone tried using angular Material from NPM with Angular Meteor and Meteor 1.3?

Any update on this? I’m also thinking of using angular-material with meteor 1.3?

With the latest addition of CSS import (1.3.2), you can simply do:

` meteor npm install --save angular-material

in your module files:

import ngMaterial from 'angular-material';
import 'angular-material/angular-material.css';

Include ngMaterial as your module dependency (no quotes!)

Tada!