Clean up Makefile, .gitignore and .npmignore

This commit is contained in:
haad 2023-12-15 10:53:07 +02:00
parent 2770305d0b
commit 1ee83a919d
3 changed files with 3 additions and 16 deletions

3
.gitignore vendored
View File

@ -1,9 +1,6 @@
# Don't distribute the dependencies
node_modules/
# Don't track code coverage reports
coverage/
#Don't track ipfs files
test/ipfs/
test/browser/ipfs/

View File

@ -10,19 +10,10 @@ dist/*.map
# Don't distribute the debug build
dist/orbitdb.js
# Don't distribute screenshot
# See examples at https://github.com/orbitdb/orbit-db
images/
.git
.circleci
benchmarks
test
ipfs
docker
conf
Makefile
API.md
CHANGELOG.md
FAQ.md
GUIDE.md
CONTRIBUTING.md
CODE_OF_CONDUCT.md

View File

@ -7,14 +7,13 @@ test: deps
npm run test -- --exit
build: test
mkdir -p examples/browser/lib/
npm run build
@echo "Build success!"
clean:
rm -rf node_modules/
rm -rf coverage/
rm -rf docs/api/
rm -rf dist/
rm -f test/browser/bundle.js*
clean-dependencies: clean