Repository: tez Updated Branches: refs/heads/master 3e409ae0e -> 18398c805
TEZ-3143. Tez UI 2: Make the build faster (sree) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/18398c80 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/18398c80 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/18398c80 Branch: refs/heads/master Commit: 18398c8051c329478c46ab63d6bf106fbf9f5447 Parents: 3e409ae Author: Sreenath Somarajapuram <[email protected]> Authored: Sun Feb 28 08:09:45 2016 +0530 Committer: Sreenath Somarajapuram <[email protected]> Committed: Sun Feb 28 08:09:45 2016 +0530 ---------------------------------------------------------------------- CHANGES.txt | 1 + tez-ui2/src/main/webapp/ember-cli-build.js | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/18398c80/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index f3efab7..adc84ea 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -43,6 +43,7 @@ ALL CHANGES: TEZ-3037. History URL should be set regardless of which history logging service is enabled. TEZ-3032. DAG start time getting logged using system time instead of recorded time in startTime field. TEZ-3101. Tez UI: Task attempt log link doesn't have the correct protocol. + TEZ-3143. Tez UI 2: Make the build faster TEZ-2980: Tez UI 2 - Umbrella: TEZ-2982. Tez UI: Create tez-ui2 directory and get a basic dummy page working in ember 2.2 http://git-wip-us.apache.org/repos/asf/tez/blob/18398c80/tez-ui2/src/main/webapp/ember-cli-build.js ---------------------------------------------------------------------- diff --git a/tez-ui2/src/main/webapp/ember-cli-build.js b/tez-ui2/src/main/webapp/ember-cli-build.js index 6068ee4..1de337c 100644 --- a/tez-ui2/src/main/webapp/ember-cli-build.js +++ b/tez-ui2/src/main/webapp/ember-cli-build.js @@ -25,7 +25,13 @@ var MergeTrees = require('broccoli-merge-trees'); module.exports = function(defaults) { var app = new EmberApp(defaults, { - storeConfigInMeta: false + storeConfigInMeta: false, + minifyCSS: { + enabled: false + }, + minifyJS: { + enabled: false + } }); var configEnv = new Funnel('config', {
