Skip to content

Commit

Permalink
開発時に使うcommandをMakefileに記述 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
shouichi authored Mar 8, 2024
1 parent d25ee53 commit 0fd2eec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: server
server:
bundle exec jekyll server --livereload --draft

.PHONY: fmt
fmt:
yarn run prettier --write '**/**.{yml,md,html}'

.PHONY: lint
lint:
yarn textlint .

0 comments on commit 0fd2eec

Please sign in to comment.