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:
|
||||
npm install
|
||||
dev: npm-install
|
||||
npx expo start -p 8080
|
||||
|
||||
npm-install:
|
||||
npm install
|
||||
|
||||
clean:
|
||||
rm -rf node_modules .expo
|
||||
|
||||
lint:
|
||||
npm install
|
||||
lint: npm-install
|
||||
npm run lint
|
Loading…
Reference in a new issue