Skip to content
Snippets Groups Projects
Commit 57c25b6a authored by Bertrand PINEL's avatar Bertrand PINEL
Browse files

Activate JDL processing to produce entity

parent 170fee85
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,12 @@ module.exports = {
break;
}
});
console.log('ember g entity-factory ' + entity.name.toLowerCase() + ' ' + entity.options.join(" "));
let cmd = 'ember g entity-factory ' + entity.name.toLowerCase() + ' ' + entity.options.join(" ");
if (options.dummy) {
cmd += ' --dummy';
}
//console.log(cmd);
shelljs.exec(cmd);
}
},
......
{
"name": "ember-aws-ehipster",
"version": "0.2.0",
"version": "0.2.1",
"description": "The default blueprint for ember-cli addons.",
"keywords": [
"ember-addon"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment