From c09f0f6397c17a7fe91dd2c4f75bcb28252daacf Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Thu, 23 Feb 2017 17:44:31 +0100 Subject: [PATCH] parser: Change suffix to use ES6 default module export This export will be transpiled by Babel for the cjs distribution, but will enable others to use a pure ES6 module distribution --- src/parser-suffix.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/parser-suffix.js b/src/parser-suffix.js index 1f69f7a44..6e4aa20d6 100644 --- a/src/parser-suffix.js +++ b/src/parser-suffix.js @@ -1,2 +1 @@ -exports.__esModule = true; -exports['default'] = handlebars; +export default handlebars;