Created
May 25, 2013 12:45
-
-
Save dbankier/5648950 to your computer and use it in GitHub Desktop.
alloy.jmk for automatic spy injection for TiShadow
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
task("pre:compile", function(event,logger) { | |
var wrench = require("wrench"), | |
fs = require("fs"), | |
controllers_root = event.dir.controllers, | |
path = require("path"); | |
if (event.alloyConfig.deployType === 'production') { | |
return; | |
} | |
wrench.readdirSyncRecursive(controllers_root).forEach(function(file) { | |
if (file.match(/.js$/)) { | |
fs.appendFileSync( | |
path.join(controllers_root,file), | |
"\naddSpy('" + file.replace(".js","") + "',$)" ); | |
} | |
}); | |
}); | |
task("post:compile", function(event,logger) { | |
var wrench = require("wrench"), | |
fs = require("fs"), | |
controllers_root = event.dir.controllers, | |
path = require("path"); | |
if (event.alloyConfig.deployType === 'production') { | |
return; | |
} | |
wrench.readdirSyncRecursive(controllers_root).forEach(function(file) { | |
if (file.match(/.js$/)) { | |
var contents = fs.readFileSync(path.join(controllers_root,file)).toString().split("\n"); | |
contents.pop(); | |
fs.writeFileSync( | |
path.join(controllers_root,file), | |
contents.join("\n")); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment