ember-cli
Version:
Command line tool for developing ambitious ember.js apps
37 lines (29 loc) • 801 B
JavaScript
;
const Blueprint = require('../../lib/models/blueprint');
const isPackageMissing = require('ember-cli-is-package-missing');
module.exports = {
description: 'Generates a mock api endpoint in /api prefix.',
anonymousOptions: [
'endpoint-path',
],
locals(options) {
return {
path: `/${options.entity.name.replace(/^\//, '')}`,
};
},
beforeInstall(options) {
let serverBlueprint = Blueprint.lookup('server', {
ui: this.ui,
analytics: this.analytics,
project: this.project,
});
return serverBlueprint.install(options);
},
afterInstall(options) {
if (!options.dryRun && isPackageMissing(this, 'express')) {
return this.addPackagesToProject([
{ name: 'express', target: '^4.8.5' },
]);
}
},
};