frostbyte-native/Justfile
2023-12-15 01:56:19 +01:00

14 lines
173 B
Makefile

dev: npm-install
npx expo start -p 8080
npm-install:
npm install
clean:
rm -rf node_modules .expo
fmt:
npm run format
lint: npm-install
npm run lint