@phcoliveira wrote:
Hello there and thanks in advance!
For some unusual, but thoughtful, reasons, I would like the files from the
addon
folder of some private addons to be compiled in another file, other thanvendor.js
. Is it possible?I already know how to remove such contents from the
vendor.js
by returning an emptytree
for the hooktreeForAddon
. But I can’t find a way to place them in anotherjs
file.After many attempts, I am thinking about replicating
ember-cli
's behaviour insideember-cli-build.js
, for example:
To use
broccoli-funnel
to create a tree oflib/private-addon/addon/**/*.hbs
and have these templates precompiled and concatenated in a file namedassets/private-addons.js
;To use
broccoli-funnel
to create a tree oflib/private-addon/addon/**/*.js
and have these files processed bybroccoli-babel
(or something like that) and concatenated in the file mentioned above.How would you approach this problem?
Again, thanks!
Posts: 1
Participants: 1