Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 226a6a6

Browse files
committed
test: open() in before
package.json and src update keystore path fix update io deps fix: removing keystore.open Forcing keystore options test: updates test: fix chore: package-lock Updated dependencies fix: creating default signingKeystore chore: dependencies Add localMaintainers field These people should have access rights to publish on npm. See https://github.com/orbitdb/welcome/blob/master/npm-policy.md. fix: access keystore directly fix: restoring _store update build v0.1.1 add .npmignore update build v1.1.2 v1.1.3 v0.1.4 v0.1.5 fix linting merging in master Final build stuff package lock Adding default keystore if none exists Fixing package.json
1 parent 1e4b599 commit 226a6a6

File tree

9 files changed

+11742
-1654
lines changed

9 files changed

+11742
-1654
lines changed

Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
all: build
2+
3+
deps:
4+
npm install
5+
6+
test: deps
7+
npm run test
8+
9+
build: test
10+
mkdir -p examples/browser/lib/
11+
npm run build
12+
@echo "Build success!"
13+
@echo "Output: 'dist/', 'examples/browser/'"
14+
15+
clean:
16+
rm -rf orbitdb/
17+
rm -rf node_modules/
18+
19+
clean-dependencies: clean
20+
rm -f package-lock.json;
21+
22+
rebuild: | clean-dependencies build
23+
24+
.PHONY: test build

dist/index-browser.min.js

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)