add support for libcurl and epoxy

This commit is contained in:
Percs 2024-05-13 21:46:47 -05:00
parent 9f2ad08edf
commit 0a2e652ae1
6 changed files with 445 additions and 3 deletions

View file

@ -27,6 +27,14 @@ const devServer = createServer({
from: ["./node_modules/@mercuryworkshop/bare-as-module3/dist/bare.cjs"],
to: ["./static/bare-client.js"],
},
{
from: ["./node_modules/@mercuryworkshop/libcurl-transport/dist/index.cjs"],
to: ["./static/curl-client.js"],
},
{
from: ["./node_modules/@mercuryworkshop/epoxy-transport/dist/index.js"],
to: ["./static/epoxy-client.js"],
},
{
from: ["./dist/*"],
to: ["./static"]