ember-cli-moment
v0.0.2
Published
Include moment.js into an ember-cli application.
Downloads
42
Readme
ember-cli-moment has been deprecated!
- if you need just momentjs, use
bower install momentjs --save
- if you need components and helpers use the addon
npm install ember-moment --save
Installation
To install simply run
npm install --save-dev ember-cli-moment
in your Ember CLI project's root.
Moment will be added as a global variable with a global namespace. For this to work with jshint you must update the file .jshintrc.
...
"predef": {
"document": true,
"window": true,
"WowENV": true,
"moment": true
},
...