Skip to content

Commit

Permalink
Merge pull request #75 from joshuan/async-await-support
Browse files Browse the repository at this point in the history
Support async await syntax
  • Loading branch information
Yeti-or authored Apr 2, 2018
2 parents a8cc032 + 37ee2bf commit d509488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = function(source, inputSourceMap) {

generators.i18n = require('./generators/i18n').generate(langs);

const result = falafel(source, { sourceType : 'module' }, node => {
const result = falafel(source, { ecmaVersion : 8, sourceType : 'module' }, node => {
// match `require('b:button')`
if(!(
node.type === 'CallExpression' &&
Expand Down

0 comments on commit d509488

Please sign in to comment.