From 7c5a6dd326a991a21f44caed2c59e743b18ac80e Mon Sep 17 00:00:00 2001 From: Dunemask Date: Mon, 23 Aug 2021 20:36:51 -0600 Subject: [PATCH] Added vanilla predeploy script --- dist/predeploy-vanilla.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 dist/predeploy-vanilla.sh diff --git a/dist/predeploy-vanilla.sh b/dist/predeploy-vanilla.sh new file mode 100644 index 0000000..002abb6 --- /dev/null +++ b/dist/predeploy-vanilla.sh @@ -0,0 +1,11 @@ +#!/bin/bash +echo "Creating vanilla predeploy!" +# Set path correclty +if [[ $PWD == *"dist" ]]; +then cd .. +fi +# Install node dependencies +echo "Installing node depencencies!" +npm i +echo "Building Docker Image!" +npm run build:all