frostbyte-native/Justfile

11 lines
147 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-14 20:03:01 +01:00
lint: npm-install
2023-12-14 19:29:27 +01:00
npm run lint