-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rewrite all basic functionality in golang
- Includes a Makefile with tasks for running builds - Includes a LOT more colors than the original version had - Doesn't include multiple template functionality for now
- Loading branch information
1 parent
76a6b46
commit 265bf61
Showing
15 changed files
with
7,245 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
node_modules | ||
.vscode | ||
all-colors.go | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: run build | ||
|
||
run: build | ||
@./build/main FFFFFF | ||
|
||
build: | ||
@go generate ./cmd/main.go | ||
@echo "[OK] Files were generated" | ||
@go build -o ./build/main ./cmd | ||
@echo "[OK] 'main' binary was created!" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.