From b4c952860337e9bc006f58293c5167002e9ce84c Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 13 Jun 2024 11:41:12 +0200 Subject: [PATCH] :sparkles: Add missing frontend translations to devenv watcher --- frontend/scripts/watch.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/scripts/watch.js b/frontend/scripts/watch.js index 56fb84a8e..bdbe53720 100644 --- a/frontend/scripts/watch.js +++ b/frontend/scripts/watch.js @@ -63,6 +63,12 @@ h.watch("resources/templates", null, async function (path) { await h.compileTemplates(); }); +log.info("watch: translations (~)") +h.watch("translations", null, async function (path) { + log.info("changed:", path); + await h.compileTemplates(); +}); + log.info("watch: assets (~)") h.watch(["resources/images", "resources/fonts", "resources/plugins-runtime"], null, async function (path) { log.info("changed:", path);