ncuillery / angular-breadcrumb

Generate a breadcrumb from ui-router's states
http://ncuillery.github.io/angular-breadcrumb/
MIT License
785 stars 183 forks source link

Common js package manager support #145

Open bodia-uz opened 8 years ago

bodia-uz commented 8 years ago

Could You add common js support? Examples:

Result file should be like:

/* commonjs package manager support (eg componentjs) */
if (typeof module !== "undefined" && typeof exports !== "undefined" && module.exports === exports){
  module.exports = 'ncy-angular-breadcrumb';
}

// Module code

Or

require('./angular-breadcrumb');
module.exports = 'ncy-angular-breadcrumb';