chore: fix size-limit

This commit is contained in:
fryorcraken.eth 2022-12-06 13:04:18 +11:00
parent 98ac346325
commit 1fff8962b0
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 9 additions and 6 deletions

View File

@ -6,9 +6,12 @@ module.exports = [
}, },
{ {
name: "Waku default setup", name: "Waku default setup",
path: "packages/create/bundle/index.js", path: ["packages/create/bundle/index.js", "packages/core/bundle/index.js"],
import: import: {
"{ createLightNode, waitForRemotePeer, createEncoder, createDecoder }", "packages/create/bundle/index.js": "{ createLightNode }",
"packages/core/bundle/index.js":
"{ waitForRemotePeer, createEncoder, createDecoder }",
},
}, },
{ {
name: "ECIES encryption", name: "ECIES encryption",
@ -30,16 +33,16 @@ module.exports = [
{ {
name: "Privacy preserving protocols", name: "Privacy preserving protocols",
path: "packages/core/bundle/index.js", path: "packages/core/bundle/index.js",
import: "{ WakuRelay }", import: "{ wakuRelay }",
}, },
{ {
name: "Light protocols", name: "Light protocols",
path: "packages/core/bundle/index.js", path: "packages/core/bundle/index.js",
import: "{ WakuLightPush, WakuFilter }", import: "{ wakuLightPush, wakuFilter }",
}, },
{ {
name: "History retrieval protocols", name: "History retrieval protocols",
path: "packages/core/bundle/index.js", path: "packages/core/bundle/index.js",
import: "{ WakuStore }", import: "{ wakuStore }",
}, },
]; ];