diff --git a/Justfile b/Justfile deleted file mode 100644 index de9c637..0000000 --- a/Justfile +++ /dev/null @@ -1,46 +0,0 @@ -all: slint llint clean - -minit := "./test/config/minit.lua" - -nvimf := "--headless -u ./test/config/minit.lua --noplugin -c ''" - -test: - nvim --headless -u test/minit.lua -c "PlenaryBustedDirectory tests/plenary/ {options}" - -doc: - nvim --headless --noplugin -u test/config/minit.lua -c "luafile scripts/gendoc.lua" -c "qa" - -nv: - nvim -u test/config/minit.lua - -w: - ./scripts/bin/word - -wl: - ./scripts/bin/wordls - -t: - nvim --headless --noplugin -u test/minit.lua - -slint : - stylua --check . - -clean: - fd --no-ignore --glob '*-E' -x 'rm' ./ - -llint: - luacheck . - - -version: - echo "0.1.0" - -install: - co -r ./scripts/bin/word - - -book: - cd book && mdbook build - -books: - cd book && mdbook serve diff --git a/Makefile b/Makefile index a601625..51dbf9a 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,20 @@ +# minit="./test/config/minit.lua" +# +# nvimf="--headless -u ./test/config/minit.lua --noplugin -c ''" + wf: ./scripts/bin/wordf w: ./scripts/bin/word wls: ./scripts/bin/wordls + + clean: - fd --no-ignore --glob '*-E' -x 'rm' ./ + fd --no-ignore --glob "*-E" -x "rm" ./ + + +# books: +# cd book && mdbook serve + +# default: clean