Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

Commit

Permalink
fix(icon-handlebars): update exports pattern (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblack committed Jan 11, 2019
1 parent 0e3073f commit 546b352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/icons-handlebars/index.js
Expand Up @@ -30,7 +30,7 @@ function iconHelper(name, { hash = {} } = {}) {
);
}

module.exports = function register({ handlebars }) {
module.exports = exports = function register({ handlebars }) {
return handlebars.registerHelper('carbon-icon', iconHelper);
};
exports.iconHelper = iconHelper;

0 comments on commit 546b352

Please sign in to comment.