Skip to content

Commit

Permalink
Merge pull request #1315 from Turbo87/es6-parser
Browse files Browse the repository at this point in the history
parser: Change suffix to use ES6 default module export
  • Loading branch information
nknapp authored Feb 24, 2017
2 parents ad341bf + 508347e commit 8baba76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .istanbul.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
instrumentation:
excludes: ['**/spec/**']
excludes: ['**/spec/**', '**/handlebars/compiler/parser.js']
2 changes: 1 addition & 1 deletion src/parser-prefix.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* istanbul ignore next */
// File ignored in coverage tests via setting in .istanbul.yml
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 8baba76

Please sign in to comment.