Skip to content

Commit

Permalink
Merge pull request #696 from nateirwin/master
Browse files Browse the repository at this point in the history
Fix for reserved keyword "default"
  • Loading branch information
kpdecker committed Jan 2, 2014
2 parents 6e4e1f8 + 641358a commit 3f71fde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

// var local = handlebars.create();

var handlebars = require('../dist/cjs/handlebars').default;
var handlebars = require('../dist/cjs/handlebars')["default"];

handlebars.Visitor = require('../dist/cjs/handlebars/compiler/visitor').default;
handlebars.Visitor = require('../dist/cjs/handlebars/compiler/visitor')["default"];

var printer = require('../dist/cjs/handlebars/compiler/printer');
handlebars.PrintVisitor = printer.PrintVisitor;
Expand Down

0 comments on commit 3f71fde

Please sign in to comment.