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

Commit f0887d5

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
1 parent 9002598 commit f0887d5

10 files changed

+12760
-1976
lines changed

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
test
2+
webpack.config.js
3+
.circleci
4+
orbitdb
5+
index-browser.min.js.map

Makefile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
cp dist/orbitdb.min.js examples/browser/lib/orbitdb.min.js
13+
cp node_modules/ipfs/dist/index.min.js examples/browser/lib/ipfs.min.js
14+
cp dist/orbitdb.js examples/browser/lib/orbitdb.js
15+
cp dist/orbitdb.js.map examples/browser/lib/orbitdb.js.map
16+
cp node_modules/ipfs/dist/index.js examples/browser/lib/ipfs.js
17+
@echo "Build success!"
18+
@echo "Output: 'dist/', 'examples/browser/'"
19+
20+
clean:
21+
rm -rf orbitdb/
22+
rm -rf node_modules/
23+
24+
clean-dependencies: clean
25+
rm -f package-lock.json;
26+
27+
rebuild: | clean-dependencies build
28+
29+
.PHONY: test build

dist/index-browser.min.js

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

0 commit comments

Comments
 (0)