Skip to content

Commit

Permalink
use local parcel fix imWildCat#105 (imWildCat#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
slavaGanzin committed Jul 29, 2021
1 parent b8c3bf5 commit 09f2e5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
pytest --cov=./scylla tests

0 comments on commit 09f2e5c

Please sign in to comment.