rm-components
Version:
The default blueprint for ember-cli addons.
32 lines (29 loc) • 986 B
JavaScript
module.exports = {
description: '',
normalizeEntityName: function() {
// this prevents an error when the entityName is
// not specified (since that doesn't actually matter
// to us
},
// locals: function(options) {
// // Return custom template variables here.
// return {
// foo: options.entity.options.foo
// };
// }
afterInstall: function(options) {
var self = this;
// Hard dep for our current stylesheets
return self.addBowerPackageToProject('bootstrap-sass').then(function() {
return self.addBowerPackageToProject('bootstrap-sweetalert').then(function() {
return self.addBowerPackageToProject('snap.svg').then(function() {
return self.addBowerPackageToProject('velocity').then(function() {
return self.addBowerPackageToProject('numeral').then(function() {
return self.addBowerPackageToProject('nouislider');
});
});
});
});
});
}
};