mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-06-06 14:16:37 +00:00
Merge pull request #499 from orbitdb/fix/makefile
Keep package-lock on make clean, add make rebuild command
This commit is contained in:
commit
b819a66208
6
Makefile
6
Makefile
@ -20,6 +20,10 @@ build: test
|
|||||||
clean:
|
clean:
|
||||||
rm -rf orbitdb/
|
rm -rf orbitdb/
|
||||||
rm -rf node_modules/
|
rm -rf node_modules/
|
||||||
rm package-lock.json
|
|
||||||
|
clean-dependencies: clean
|
||||||
|
if [ -a package-lock.json ]; then rm package-lock.json; fi;
|
||||||
|
|
||||||
|
rebuild: | clean-dependencies build
|
||||||
|
|
||||||
.PHONY: test build
|
.PHONY: test build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user