Skip to content

Commit

Permalink
fix env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Dec 29, 2018
1 parent 5dcaa64 commit 7e92422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -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"
}

Expand Down

0 comments on commit 7e92422

Please sign in to comment.