forked from naskya/firefish
dev: update Makefile
This commit is contained in:
parent
d8ffcf8c51
commit
fcccf2eb29
2 changed files with 15 additions and 13 deletions
26
Makefile
26
Makefile
|
@ -1,9 +1,9 @@
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build: build_image
|
build: build-image
|
||||||
|
|
||||||
|
|
||||||
.PHONY: pre-commit
|
.PHONY: pre-commit
|
||||||
pre-commit: shellcheck format rust-lint regenerate-entities
|
pre-commit: shellcheck rust-lint regenerate-entities update-index-js
|
||||||
|
|
||||||
|
|
||||||
.PHONY: debug
|
.PHONY: debug
|
||||||
|
@ -17,16 +17,7 @@ debug:
|
||||||
.PHONY: shellcheck
|
.PHONY: shellcheck
|
||||||
shellcheck:
|
shellcheck:
|
||||||
shellcheck --external-sources update.sh
|
shellcheck --external-sources update.sh
|
||||||
shellcheck --external-sources neko/update/main.sh
|
shellcheck --external-sources neko/update/*
|
||||||
shellcheck --external-sources neko/update/patch.sh
|
|
||||||
shellcheck --external-sources neko/update/container.sh
|
|
||||||
shellcheck --external-sources neko/update/native.sh
|
|
||||||
shellcheck --external-sources --exclude=SC2148 neko/update/utils
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: format
|
|
||||||
format:
|
|
||||||
pnpm run format
|
|
||||||
|
|
||||||
|
|
||||||
.PHONY: rust-lint
|
.PHONY: rust-lint
|
||||||
|
@ -42,7 +33,16 @@ regenerate-entities:
|
||||||
--database-url='postgres://firefish:password@localhost/firefish_db'
|
--database-url='postgres://firefish:password@localhost/firefish_db'
|
||||||
|
|
||||||
|
|
||||||
.PHONY: build_image
|
.PHONY: update-index-js
|
||||||
|
update-index-js:
|
||||||
|
pnpm --filter='native-utils' run build:debug
|
||||||
|
[ -f packages/backend/native-utils/built/index.js ]
|
||||||
|
pnpm run format
|
||||||
|
rm neko/index.js
|
||||||
|
cp packages/backend/native-utils/built/index.js neko/index.js
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: build-image
|
||||||
build_image:
|
build_image:
|
||||||
. neko/update/utils && \
|
. neko/update/utils && \
|
||||||
buildah build \
|
buildah build \
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# shellcheck disable=SC2148
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
if [ -t 1 ]; then
|
if [ -t 1 ]; then
|
||||||
tput setaf "${1:-7}"
|
tput setaf "${1:-7}"
|
||||||
|
|
Loading…
Reference in a new issue