ember-cli-bootstrap-datetimepicker-asux
Version:
Date and time picker component for Ember CLI based on bootstrap-datetimepicker.
19 lines (16 loc) • 592 B
JavaScript
module.exports = {
description: '',
normalizeEntityName: function() {},
afterInstall: function(options) {
/* Use custom build until bugs are fixed
https://github.com/Eonasdan/bootstrap-datetimepicker/issues/1778
https://github.com/Eonasdan/bootstrap-datetimepicker/issues/1783
*/
return this.addPackagesToProject([
{ name: 'ember-cli-moment-shim', target: '^3.3.0' },
{ name: 'eonasdan-bootstrap-datetimepicker', target: '^4.17.47' },
{ name: 'moment', target: '^2.18.1' },
{ name: 'moment-timezone', target: '^0.5.13' }
]);
}
};