Is this possible to group the in-repo engines under lib folder? Example: lib/group1/engine1...etc

74 Views Asked by At

Is this possible to group certain in-repo engines under lib folder? Example: lib/group1/engines lib/group2/engines

1

There are 1 best solutions below

2
On

It is possible by creating multiple in repo engines. Presuming your working directory is an ember application with the ember-engines package installed: $ ember generate in-repo-engine group1 $ ember generate in-repo-engine group1 Be aware that linking between them is not necessarily supported. The official guide has the best explanation for creating them. Based on the core team member's response in the first link, I think the best practice is to create engines as independent ember addons.