Skip to content

Commit

Permalink
fix es6 syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
olalonde committed Jun 25, 2016
1 parent 12866de commit 9a6625f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/files/es6/re-export/a.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export default const def = 'def';
export default 'default export value';
export const named = 'named';
2 changes: 1 addition & 1 deletion test/files/es6/re-export/b-named.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { named } from './a'
export { named } from './a';

0 comments on commit 9a6625f

Please sign in to comment.