Skip to content

Commit

Permalink
removed mustache.js from the project, depend on it with npm instead
Browse files Browse the repository at this point in the history
  • Loading branch information
nrstott committed Nov 1, 2010
1 parent 4b08779 commit 830fe7b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 338 deletions.
337 changes: 0 additions & 337 deletions lib/mustache.js

This file was deleted.

2 changes: 1 addition & 1 deletion lib/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ViewEngine.prototype.partial = function(view, opts) {
};

ViewEngine.prototype.mustache = function(str, opts) {
return require('./mustache').to_html(str, opts.locals);
return require('mustache').to_html(str, opts.locals);
};

ViewEngine.prototype.haml = function(str, opts) {
Expand Down

0 comments on commit 830fe7b

Please sign in to comment.