From 936be5f64ac615efebd968fef2525ed1a5cf2269 Mon Sep 17 00:00:00 2001 From: goldpbear Date: Tue, 24 Oct 2017 16:52:19 -0700 Subject: [PATCH] chore(static build) clean up a few things - remove an __init__.py - don't use old dist folder to store temp build files --- src/__init__.py | 0 static-build.js | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 src/__init__.py diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/static-build.js b/static-build.js index 0a4363e786..953b01916e 100644 --- a/static-build.js +++ b/static-build.js @@ -162,8 +162,8 @@ const flavorPagesPath = path.resolve( // NOTE: pages are a flavor-only concept, "jstemplates/pages" ); const outputJSTemplatesPath = path.resolve( - __dirname, - "src/base/static/dist/jstemplates" + outputBasePath, + "jstemplates" ); const baseLocaleDir = path.resolve( __dirname, @@ -174,8 +174,8 @@ const flavorLocaleDir = path.resolve( "locale" ); const mergedPOFileOutputPath = path.resolve( - __dirname, - "src/base/static/dist/messages.po" + outputBasePath, + "messages.po" ); let activeLanguages;