ci: fix size-limit config

This commit is contained in:
fryorcraken.eth 2022-09-08 11:32:33 +10:00
parent 91e4d1b435
commit 6ef0a69d07
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 2 additions and 2 deletions

View File

@ -2,13 +2,13 @@ module.exports = [
{ {
name: "Waku core", name: "Waku core",
path: "bundle/index.js", path: "bundle/index.js",
import: "{ Waku }", import: "{ WakuNode }",
}, },
{ {
name: "Waku default setup", name: "Waku default setup",
path: ["bundle/index.js", "bundle/lib/create_waku.js"], path: ["bundle/index.js", "bundle/lib/create_waku.js"],
import: { import: {
"./bundle/lib/create_waku.js": "{ createWaku }", "./bundle/lib/create_waku.js": "{ createLightNode }",
"./bundle/lib/wait_for_remote_peer.js": "{ waitForRemotePeer }", "./bundle/lib/wait_for_remote_peer.js": "{ waitForRemotePeer }",
}, },
}, },