all repos — site @ 81f18a93dbf4d08d77733e77babe6b186f1fa9ca

source for my site, found at icyphox.sh

build: add makefile
Anirudh Oppiliappan x@icyphox.sh
Mon, 07 Feb 2022 09:49:47 +0530
commit

81f18a93dbf4d08d77733e77babe6b186f1fa9ca

parent

4453e369d1224da863430e44c609ac43a987fb13

2 files changed, 11 insertions(+), 1 deletions(-)

jump to
A makefile

@@ -0,0 +1,10 @@

+build: + @vite build + +serve: + @./bin/serve.sh + +ci: + @./bin/build.sh + +.PHONY: build serve ci
M netlify.tomlnetlify.toml

@@ -1,3 +1,3 @@

[build] publish = "build/" - command = "./bin/build.sh" + command = "make ci"