I am new to meteor and was starting to use packages for features kind of development for a new web application.
I wanted to create a core of the web app and then modules as separate packages. I was wondering if I could divide the core into sub packages nested under a top level core package like this.
@sashko does meteor 1.3 load the html files under imports folder? your guide mentioned that we could organize the templates ( i am using blaze) under the import/ui directory. But when I startup, the app cannot find my main layout template which i put under imports/ui/layouts/main_layout.
If I load the html using import … it seems to work.
It will be a bummer if we have to load all html ourselves. Is it now like packages were the all html is loaded automatically ( i read that somewhere?
There is a defect in meteor where by specifying a imports directory inside a package, you cannot load templates inside the package.js by using api.addFiles(’/imports/ui/template.html’). The template is not loaded. If you move the template to a directory outside imports, then it works fine.