Skip to content

Commit

Permalink
also es6
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Feb 12, 2015
1 parent ad751ad commit 2eb7ce0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = function parse (modules, opts) {
return duplexer(concat(function (buf) {
try {
body = buf.toString('utf8');
var src = falafel(body, walk)
var src = falafel(body, { ecmaVersion: 6 }, walk)
}
catch (err) { return error(err) }
finish(src);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "static-module",
"version": "1.1.1",
"version": "1.1.2",
"description": "convert module usage to inline expressions",
"main": "index.js",
"dependencies": {
Expand Down

0 comments on commit 2eb7ce0

Please sign in to comment.