From 7e9242285f188eff618830ee20a6b32790c8fda5 Mon Sep 17 00:00:00 2001 From: chee Date: Sat, 29 Dec 2018 00:14:04 +0000 Subject: [PATCH] fix env variable --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 852f1ed..b9af82b 100755 --- a/index.js +++ b/index.js @@ -139,8 +139,8 @@ void async function () { let manifest = await fs.readJson(manifestFile) manifest.scripts = { - build: "parcel build index.html -d ${BOOP_OUTPUT_DIRECTORY:-website} --public-url ${BOOP_PUBLIC_URL:-/}", - watch: "parcel watch index.html -d ${BOOP_OUTPUT_DIRECTORY:-website} --public-url ${BOOP_PUBLIC_URL:-/}", + build: "parcel build index.html -d ${BOOP_WEBSITE_DIRECTORY:-website} --public-url ${BOOP_PUBLIC_URL:-/}", + watch: "parcel watch index.html -d ${BOOP_WEBSITE_DIRECTORY:-website} --public-url ${BOOP_PUBLIC_URL:-/}", start: "parcel index.html" }