UNPKG

ember-paper

Version:
33 lines (28 loc) 675 B
'use strict'; const isModuleUnificationProject = require('../module-unification').isModuleUnificationProject; module.exports = { description: 'Installs ember-cli-sass', normalizeEntityName() { // this prevents an error when the entityName is // not specified (since that doesn't actually matter // to us }, fileMapTokens() { if (isModuleUnificationProject(this.project)) { return { __path__() { return 'src/ui'; } }; } else { return { __path__() { return 'app'; } }; } }, afterInstall() { return this.addAddonToProject('ember-cli-sass', '^7.2.0'); } };