unmade / am-date-picker

angular material date picker
MIT License
21 stars 13 forks source link

Cannot find moment library #20

Closed BkSouX closed 8 years ago

BkSouX commented 8 years ago

Hello,

I have an issue integrating your library with npm like this in package.json : "angular-material-datepicker": "unmade/am-date-picker"

I import the library in my project like this : import 'angular-material-datepicker/dist/am-date-picker.min';

I already have moment library in my package.json.

And when i navigate on the page integrating am-date-picker, here the error i take when clicking on the generated input : ReferenceError: moment is not defined

Do you know what could be the problem ?

Thanks, Bruno

unmade commented 8 years ago

Hello Bruno!

I guess you are using TypeScript, aren't you? Unfortunately, I'm not familiar with this language. This date picker uses moment.js library as a dependency, so make sure you have all dependencies install and imported. Maybe that could help.

BkSouX commented 8 years ago

Hi,

I'm using ES6 with babel and Webpack. I have to include that plugin in my webpack configuration :

    new webpack.ProvidePlugin({
      moment: 'moment'
    }),

Everything's working now ;)

Bruno