diff --git a/Makefile b/Makefile index d311783..f7a93e3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: build clean test +.PHONY: build clean test dev-init build: clean @echo "======================== Building Binary =======================" @@ -23,4 +23,8 @@ test: go tool pprof -top mem.prof @rm -f mem.prof - @rm -f test.test \ No newline at end of file + @rm -f test.test + +dev-init: + apt install minify + go get -t wfa/test \ No newline at end of file diff --git a/README.md b/README.md index 0b56d3c..7fe0800 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Using WFA-JS -Download `wfa.js` and `wfa.wasm`from [releases](https://git.tronnet.net/tronnet/WFA-JS/releases) to your project. Add to your script: +Download `wfa.js` and `wfa.wasm`from [releases](https://git.tronnet.net/alu/WFA-JS/releases) to your project. Add to your script: ``` import wfa from "./wfa.js" diff --git a/go.mod b/go.mod index 9c42739..6e7309b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module wfa -go 1.23.2 +go 1.23.6 require ( github.com/schollz/progressbar/v3 v3.17.1