frostbyte-native/Justfile

15 lines
185 B
Makefile
Raw Normal View History

2023-12-14 20:03:01 +01:00
dev: npm-install
2023-12-13 22:43:00 +01:00
npx expo start -p 8080
2023-12-14 19:17:24 +01:00
2023-12-14 20:03:01 +01:00
npm-install:
npm install
2023-12-14 19:17:24 +01:00
clean:
2023-12-14 19:29:27 +01:00
rm -rf node_modules .expo
2023-12-15 01:58:10 +01:00
fmt: npm-install
2023-12-15 01:56:19 +01:00
npm run format
2023-12-14 20:03:01 +01:00
lint: npm-install
2023-12-15 01:56:19 +01:00
npm run lint