diff --git a/Makefile b/Makefile index 30e95d1..a7a7237 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,9 @@ delete-tag: git tag --delete $(TAG); git push --delete origin $(TAG) assets-build: make assets-clean - NODE_ENV=production parcel build --public-url='/assets' -d scylla/assets frontend/src/index.html + NODE_ENV=production node_modules/.bin/parcel build --public-url='/assets' -d scylla/assets frontend/src/index.html assets-dev: - parcel --public-url='/assets' frontend/src/index.html + node_modules/.bin/parcel --public-url='/assets' frontend/src/index.html assets-clean: rm -rf scylla/assets rm -rf build/lib/scylla/assets @@ -33,4 +33,4 @@ style-check: flake8 . --count --config=.flake8.cfg --select=E901,E999,F821,F822,F823 --show-source --statistics test: make style-check - pytest --cov=./scylla tests \ No newline at end of file + pytest --cov=./scylla tests