Slight justfile refactor
This commit is contained in:
parent
6e70d9a5ab
commit
ca12938fb0
1 changed files with 5 additions and 4 deletions
9
Justfile
9
Justfile
|
@ -1,10 +1,11 @@
|
||||||
dev:
|
dev: npm-install
|
||||||
npm install
|
|
||||||
npx expo start -p 8080
|
npx expo start -p 8080
|
||||||
|
|
||||||
|
npm-install:
|
||||||
|
npm install
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf node_modules .expo
|
rm -rf node_modules .expo
|
||||||
|
|
||||||
lint:
|
lint: npm-install
|
||||||
npm install
|
|
||||||
npm run lint
|
npm run lint
|
Loading…
Reference in a new issue