mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-18 20:57:55 +00:00
6f1638e87a
This refactor the UI components from class based element into function based elements. This makes it possible to use hooks that are used now by most React components. This also updates React and Ant to the latest versions (+ other dependencies).
18 lines
238 B
Makefile
18 lines
238 B
Makefile
.PHONY: build server dependencies clean
|
|
|
|
build: dependencies
|
|
yarn build
|
|
|
|
server: dependencies
|
|
yarn start
|
|
|
|
dependencies:
|
|
yarn install
|
|
yarn add file:../api/grpc-web
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
format:
|
|
./node_modules/.bin/prettier --write .
|