From 91a9621648c93843033d4eb73920597cbd5a20c3 Mon Sep 17 00:00:00 2001 From: Lars Jung Date: Sat, 11 Aug 2012 02:41:03 +0200 Subject: [PATCH] Changes build process to use handelbars. --- makefile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile.js b/makefile.js index 6e612864..4b14e03b 100644 --- a/makefile.js +++ b/makefile.js @@ -6,7 +6,7 @@ var path = require('path'), child_process = require('child_process'); -var version = '0.22-dev-1', +var version = '0.22-dev-2', root = path.resolve(__dirname), src = path.join(root, 'src'), @@ -120,7 +120,7 @@ module.exports = function (make) { $(src + ': **, ! _h5ai/js/**, ! _h5ai/css/**') .modified(mapper) - .mustache(replacements) + .handlebars(replacements) .write($.OVERWRITE, mapper); $(root + ': README*, LICENSE*') @@ -146,7 +146,7 @@ module.exports = function (make) { $(src + ': **, ! _h5ai/js/**, ! _h5ai/css/**') .modified(mapper) - .mustache(replacements) + .handlebars(replacements) .write($.OVERWRITE, mapper); $(root + ': README*, LICENSE*')