git ssb

1+

Daan Patchwork / patchwork



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.jschanged
package-lock.jsonchanged
package.jsonchanged
lib/server-process.jsView
@@ -15,9 +15,15 @@
1515 .use(require('ssb-unix-socket'))
1616 .use(require('ssb-friends')) // not strictly required, but helps ssb-conn a lot
1717 .use(require('ssb-blobs'))
1818 .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 + )
2026 .use(require('ssb-private'))
2127 .use(require('ssb-room/tunnel/client'))
2228 .use(require('ssb-dht-invite'))
2329 .use(require('ssb-invite'))
package-lock.jsonView
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.jsonView
@@ -64,9 +64,8 @@
6464 "scuttle-tag": "^0.5.0",
6565 "secret-stack": "^6.3.1",
6666 "sorted-array-functions": "^1.2.0",
6767 "spacetime": "^6.4.1",
68- "ssb-about": "github:ssbc/ssb-about#use-await-ready",
6968 "ssb-backlinks": "^2.1.1",
7069 "ssb-blob-files": "^1.2.0",
7170 "ssb-blobs": "^2.0.1",
7271 "ssb-client": "^4.9.0",
@@ -90,8 +89,9 @@
9089 "ssb-ref": "^2.13.9",
9190 "ssb-replicate": "^1.3.2",
9291 "ssb-room": "^1.2.2",
9392 "ssb-search": "^1.2.1",
93 + "ssb-social-index": "^1.1.0",
9494 "ssb-sort": "^1.1.3",
9595 "ssb-suggest": "^1.2.0",
9696 "ssb-tags": "^0.2.0",
9797 "ssb-unix-socket": "^1.0.0",

Built with git-ssb-web