Skip to content

Commit

Permalink
parser: Change suffix to use ES6 default module export
Browse files Browse the repository at this point in the history
This export will be transpiled by Babel for the cjs distribution, but will enable others to use a pure ES6 module distribution
  • Loading branch information
Turbo87 committed Feb 23, 2017
1 parent ad341bf commit c09f0f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/parser-suffix.js
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
exports.__esModule = true;
exports['default'] = handlebars;
export default handlebars;

0 comments on commit c09f0f6

Please sign in to comment.