This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Handlebars.js Wed Sep 19 14:47:36 2012 | |
+++ handlebars-1.0.rc.1.js Wed Sep 19 14:47:40 2012 | |
@@ -1,3 +1,4 @@ | |
+(function () { | |
// lib/handlebars/base.js | |
var Handlebars = {}; | |
@@ -93,6 +94,7 @@ | |
Handlebars.log(context); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Gaze = require("gaze").Gaze; | |
var gaze = new Gaze("test_struct/**/*.js"); | |
gaze.on("ready", function(watcher) { | |
this.watched(function(e, f) { | |
var files = []; | |
Object.keys(f).forEach(function(k) { | |
f[k].forEach(function(file) { | |
files.push(file); | |
}); |
OlderNewer