build: Fix typo in the Makefile
This commit is contained in:
parent
0d854092db
commit
8895963f3c
@ -13,8 +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 --public-url /app/ src/index.hbs
|
NODE_ENV=production ./node_modules/.bin/parcel build --out-dir dist/app --public-url /app/ --no-autoinstall src/index.hbs
|
||||||
NODE_ENV=production ./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 --no-autoinstall src/lost.html src/error.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
|
||||||
|
Reference in New Issue
Block a user