in reply to Re: perl Module and directory structure
in thread perl Module and directory structure

module-starter --module=A,A::A1,A::A2,B,B::B1,B::B2

I've never had the need for anything like that before from Module::Starter, but that's a handy little trick to have seen.

Replies are listed 'Best First'.
Re^3: perl Module and directory structure
by Anonymous Monk on Mar 03, 2017 at 17:10 UTC
    Thank you! Looking back I think OP wanted more like:
    --module=B,B::B1,B::B2,B::A,B::A::A1,B::A::A2
    
    A classes are indented within the B class, but they don't share B namespace so only OP know.