Repository: couchdb-fauxton Updated Branches: refs/heads/master 26c9a05d1 -> 00c737a50
build: don't hardcode environments Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/00c737a5 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/00c737a5 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/00c737a5 Branch: refs/heads/master Commit: 00c737a5044227c8253632aa661472a03a846686 Parents: 26c9a05 Author: Robert Kowalski <[email protected]> Authored: Wed Apr 1 12:27:49 2015 +0200 Committer: Robert Kowalski <[email protected]> Committed: Wed Apr 1 12:27:49 2015 +0200 ---------------------------------------------------------------------- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/00c737a5/Gruntfile.js ---------------------------------------------------------------------- diff --git a/Gruntfile.js b/Gruntfile.js index 719f23c..86d1785 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -124,7 +124,7 @@ module.exports = function (grunt) { var i18n = JSON.stringify(helper.readI18nFile(), null, ' '); - ['development', 'release', 'couchapp'].forEach(function (key) { + Object.keys(settings.template).forEach(function (key) { settings.template[key].app.i18n = i18n; });
