Skip to content

Commit

Permalink
feat(makefile): improving sections names and contents.
Browse files Browse the repository at this point in the history
  • Loading branch information
razshare committed Jan 12, 2025
1 parent e1838c2 commit cdd9ea0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
update: www/package.json prepare/main.go go.mod
update: go.mod www/package.json
go mod tidy
cd www && bun update

Expand Down Expand Up @@ -34,8 +34,10 @@ dev: bin go.mod
bin:
curl -sSfL https://raw.githubusercontent.com/air-verse/air/master/install.sh | sh -s

www-build: www/package.json
www-prepare:
go run prepare/main.go

www-build: www-prepare www/package.json
make www-build-server & make www-build-client & wait

www-build-server: www/package.json
Expand All @@ -47,7 +49,7 @@ www-build-client: www/package.json
cd www && \
bunx vite build --outDir dist/client --emptyOutDir

www-watch: www/package.json
www-watch: www-prepare www/package.json
make www-watch-server & make www-watch-client & wait

www-watch-server: www/package.json
Expand Down

0 comments on commit cdd9ea0

Please sign in to comment.