updated to v2

This commit is contained in:
Tony Tam
2012-07-11 09:57:27 -07:00
parent a2c1c18f75
commit d2eb882e52
278 changed files with 46216 additions and 11130 deletions

14
node_modules/handlebars/lib/handlebars.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
var Handlebars = require("./handlebars/base");
module.exports = Handlebars;
// Each of these augment the Handlebars object. No need to setup here.
// (This is done to easily share code between commonjs and browse envs)
require("./handlebars/utils");
require("./handlebars/compiler");
require("./handlebars/runtime");
// BEGIN(BROWSER)
// END(BROWSER)