From 3256f6f4045661edf6816dbd0914fbedbffd2649 Mon Sep 17 00:00:00 2001 From: Phil Hughes Date: Thu, 27 Jul 2017 08:41:47 +0100 Subject: [PATCH] Compile JS lang files before webpack compile Closes #35615 --- lib/tasks/gitlab/assets.rake | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tasks/gitlab/assets.rake b/lib/tasks/gitlab/assets.rake index 003d57adbbd..259a755d724 100644 --- a/lib/tasks/gitlab/assets.rake +++ b/lib/tasks/gitlab/assets.rake @@ -4,6 +4,7 @@ namespace :gitlab do task compile: [ 'yarn:check', 'rake:assets:precompile', + 'gettext:po_to_json', 'webpack:compile', 'fix_urls' ] -- GitLab