diff --git a/Makefile b/Makefile index 709ce0b9c..e7bceea38 100644 --- a/Makefile +++ b/Makefile @@ -23,10 +23,6 @@ UPDATE_SCRIPTS := update.sh UPDATE_SCRIPTS += $(foreach dir, neko/update, $(wildcard $(dir)/*)) -.PHONY: build -build: build-image - - .PHONY: pre-commit pre-commit: shellcheck update-lockfiles regenerate-entities neko/index.js rust-lint @@ -41,8 +37,8 @@ $(RUST_DIR)/Cargo.lock: $(CARGO_TOMLS) cd $(RUST_DIR) && cargo update -.PHONY: debug -debug: +.PHONY: run +run: pnpm install pnpm run build:debug pnpm run migrate diff --git a/docs/contributing.md b/docs/contributing.md index 363c7e314..5409fc7a7 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -54,13 +54,13 @@ make ### 実行 ```bash -make debug +make run ``` -### コミット前に行う確認 +### lockfile や native-utils の entity の更新など(コミット前に行ってください) ```bash -make pre-commit +make ``` ### コミットメッセージ