-
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.
feat(dependencies): removed unneeded git submodules
- Loading branch information
1 parent
48711ca
commit 58bba30
Showing
9 changed files
with
43 additions
and
28 deletions.
There are no files selected for viewing
Submodule busted
deleted from
5ed85d
Submodule luassert
deleted from
d3528b
Submodule luvit-meta
deleted from
ce76f6
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
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
This file was deleted.
Oops, something went wrong.
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
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,17 +1,30 @@ | ||
.PHONY: api_documentation llscheck luacheck stylua test | ||
|
||
# Git will error if the repository already exists. We ignore the error. | ||
# NOTE: We still print out that we did the clone to the user so that they know. | ||
# | ||
ifeq ($(OS),Windows_NT) | ||
IGNORE_EXISTING = 2> nul | ||
else | ||
IGNORE_EXISTING = 2> /dev/null || true | ||
endif | ||
|
||
clone_git_dependencies: | ||
git clone git@github.com:LuaCATS/busted.git .dependencies/busted $(IGNORE_EXISTING) | ||
git clone git@github.com:LuaCATS/luassert.git .dependencies/luassert $(IGNORE_EXISTING) | ||
git clone git@github.com:Bilal2453/luvit-meta.git .dependencies/luvit-meta $(IGNORE_EXISTING) | ||
|
||
api_documentation: | ||
nvim -u scripts/make_api_documentation/minimal_init.lua -l scripts/make_api_documentation/main.lua | ||
|
||
llscheck: | ||
VIMRUNTIME=`nvim -l scripts/print_vimruntime_environment_variable.lua` llscheck --configpath .luarc.json . | ||
llscheck: clone_git_dependencies | ||
VIMRUNTIME=`nlua -e 'io.write(os.getenv("VIMRUNTIME"))'` llscheck --configpath .luarc.json . | ||
|
||
luacheck: | ||
luacheck lua plugin scripts spec | ||
|
||
stylua: | ||
stylua lua plugin scripts spec | ||
|
||
test: | ||
eval $(luarocks path --lua-version 5.1 --bin) | ||
test: clone_git_dependencies | ||
busted --helper spec/minimal_init.lua . |
This file was deleted.
Oops, something went wrong.