build: Fix a misspelled CLI flag
This commit is contained in:
parent
dcd0a9888c
commit
6b577273b0
@ -13,9 +13,8 @@ clean:
|
|||||||
build: prod
|
build: prod
|
||||||
prod: node_modules clean
|
prod: node_modules clean
|
||||||
@echo Building with parcel
|
@echo Building with parcel
|
||||||
NODE_DEV=production ./node_modules/.bin/parcel build --out-dir dist/app src/index.hbs
|
NODE_DEV=production ./node_modules/.bin/parcel build --out-dir dist/app --public-url /app/ src/index.hbs
|
||||||
./node_modules/.bin/parcel build --out-dir dist src/lost.html src/error.html
|
NODE_ENV=production ./node_modules/.bin/parcel build --out-dir dist src/lost.html src/error.html
|
||||||
sed -e "s/\/src/\/app\/src/g" --in-place dist/app/index.html
|
|
||||||
|
|
||||||
@echo Generate checksums
|
@echo Generate checksums
|
||||||
find ./dist/ -exec sha512sum {} + | awk -F \. '{ if($$4 != "map") print $$0}' | awk -F \/ '{ if($$3 == "lost.html") {} else if ($$3 == "error.html") {} else print $$0}' > sha512sums
|
find ./dist/ -exec sha512sum {} + | awk -F \. '{ if($$4 != "map") print $$0}' | awk -F \/ '{ if($$3 == "lost.html") {} else if ($$3 == "error.html") {} else print $$0}' > sha512sums
|
||||||
@ -25,9 +24,8 @@ prod: node_modules clean
|
|||||||
|
|
||||||
dev: node_modules clean
|
dev: node_modules clean
|
||||||
@echo Building with parcel
|
@echo Building with parcel
|
||||||
NODE_ENV=development ./node_modules/.bin/parcel build --out-dir dist/app src/index.hbs
|
NODE_ENV=development ./node_modules/.bin/parcel build --out-dir dist/app --public-url /app/ src/index.hbs
|
||||||
./node_modules/.bin/parcel build --out-dir dist src/lost.html src/error.html
|
NODE_ENV=development ./node_modules/.bin/parcel build --out-dir dist src/lost.html src/error.html
|
||||||
sed -e "s/\/src/\/app\/src/g" --in-place dist/app/index.html
|
|
||||||
|
|
||||||
chmod 604 -R dist/app/*
|
chmod 604 -R dist/app/*
|
||||||
chmod 604 dist/error.html dist/lost.html
|
chmod 604 dist/error.html dist/lost.html
|
||||||
|
Reference in New Issue
Block a user