Commit 486af00f56978c646ce40d45da2d63a8bb58f0dd
Replace ssb-about with ssb-social-index
ssb-about was literally just a wrapper. Better to keep the dependency tree clean.Daan Wynen committed on 2/27/2021, 7:28:54 PM
Parent: 12471e1c9514023ab398aaee7888ae24e4fa69d1
Files changed
lib/server-process.js | changed |
package-lock.json | changed |
package.json | changed |
lib/server-process.js | ||
---|---|---|
@@ -15,9 +15,15 @@ | ||
15 | 15 … | .use(require('ssb-unix-socket')) |
16 | 16 … | .use(require('ssb-friends')) // not strictly required, but helps ssb-conn a lot |
17 | 17 … | .use(require('ssb-blobs')) |
18 | 18 … | .use(require('ssb-backlinks')) |
19 | - .use(require('ssb-about')) | |
19 … | + .use( | |
20 … | + require('ssb-social-index')({ | |
21 … | + namespace: 'about', | |
22 … | + type: 'about', | |
23 … | + destField: 'about' | |
24 … | + }) | |
25 … | + ) | |
20 | 26 … | .use(require('ssb-private')) |
21 | 27 … | .use(require('ssb-room/tunnel/client')) |
22 | 28 … | .use(require('ssb-dht-invite')) |
23 | 29 … | .use(require('ssb-invite')) |
package-lock.json | ||
---|---|---|
The diff is too large to show. Use a local git client to view these changes. Old file size: 430436 bytes New file size: 431113 bytes |
package.json | ||
---|---|---|
@@ -64,9 +64,8 @@ | ||
64 | 64 … | "scuttle-tag": "^0.5.0", |
65 | 65 … | "secret-stack": "^6.3.1", |
66 | 66 … | "sorted-array-functions": "^1.2.0", |
67 | 67 … | "spacetime": "^6.4.1", |
68 | - "ssb-about": "github:ssbc/ssb-about#use-await-ready", | |
69 | 68 … | "ssb-backlinks": "^2.1.1", |
70 | 69 … | "ssb-blob-files": "^1.2.0", |
71 | 70 … | "ssb-blobs": "^2.0.1", |
72 | 71 … | "ssb-client": "^4.9.0", |
@@ -90,8 +89,9 @@ | ||
90 | 89 … | "ssb-ref": "^2.13.9", |
91 | 90 … | "ssb-replicate": "^1.3.2", |
92 | 91 … | "ssb-room": "^1.2.2", |
93 | 92 … | "ssb-search": "^1.2.1", |
93 … | + "ssb-social-index": "^1.1.0", | |
94 | 94 … | "ssb-sort": "^1.1.3", |
95 | 95 … | "ssb-suggest": "^1.2.0", |
96 | 96 … | "ssb-tags": "^0.2.0", |
97 | 97 … | "ssb-unix-socket": "^1.0.0", |
Built with git-ssb-web