From 15704e55e16dd9ae685531d35bdcbb290fb2e2bb Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 8 Dec 2020 12:42:00 -0500 Subject: [PATCH] Move INLINE_RUNTIME_CHUNK flag to scripts definition We _always_ want INLINE_RUNTIME_CHUNK to be false when building the ui, even if someone happens to unexpectedly make a production build without using the top-level make targets for some reason. --- Makefile | 2 +- awx/ui_next/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 15aba30dea..6a7d4af5a5 100644 --- a/Makefile +++ b/Makefile @@ -474,7 +474,7 @@ ui-release: ui-devel ui-devel: awx/ui_next/node_modules $(NPM_BIN) --prefix awx/ui_next run extract-strings $(NPM_BIN) --prefix awx/ui_next run compile-strings - INLINE_RUNTIME_CHUNK=false $(NPM_BIN) --prefix awx/ui_next run build + $(NPM_BIN) --prefix awx/ui_next run build git checkout awx/ui_next/src/locales mkdir -p awx/public/static/css mkdir -p awx/public/static/js diff --git a/awx/ui_next/package.json b/awx/ui_next/package.json index 252319a713..d223b47d29 100644 --- a/awx/ui_next/package.json +++ b/awx/ui_next/package.json @@ -53,7 +53,7 @@ }, "scripts": { "start": "PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts start", - "build": "react-scripts build", + "build": "INLINE_RUNTIME_CHUNK=false react-scripts build", "test": "TZ='UTC' react-scripts test --coverage --watchAll=false", "test-watch": "TZ='UTC' react-scripts test", "eject": "react-scripts eject",