Local packages not working

I’ve been struggling with this one for a couple of days now.
My local packages are three:

  • layout
  • A
  • B

Layout package defines the main template and head and body of the app.
A and B package.js looks like this:

api.use([
        'ecmascript', 
        'dalgard:jade',
        'iron:router',
        'templating',
        'my:layout'
    ],  'client');

I don’t know why, but when both A and B packages are added to my umbrella package, I’ve got all kind of nasty errors refering “template not found” or “Cannot find module ‘…/template.jade’”.

Any clues? Am i doing something wrong?

It’s an issue with dalgard:jade. See Using Jade package with export/import for meteor guide app structure

I will try that. Thank you!