From 7284487430c8ec001efc9c4a585f1fbbca4f82ee Mon Sep 17 00:00:00 2001 From: ading2210 Date: Wed, 20 Mar 2024 14:36:55 -0400 Subject: [PATCH] fix npm exports --- CHANGELOG.md | 3 +++ client/package.json | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea56e91..5f8b246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Libcurl.js Changelog: +## v0.6.1 (3/20/24): +- Fix NPM package exports + ## v0.6.0 (3/20/24): - Refactor JS and C code - Allow for multiple sessions with separate connection pools diff --git a/client/package.json b/client/package.json index c4ec9a8..7d4186d 100644 --- a/client/package.json +++ b/client/package.json @@ -1,10 +1,11 @@ { "name": "libcurl.js", - "version": "0.6.0", + "version": "0.6.1", "description": "An experimental port of libcurl to WebAssembly for use in the browser.", "main": "libcurl.mjs", "exports": { - "bundled": "./libcurl_full.mjs" + ".": "./libcurl.mjs", + "./bundled": "./libcurl_full.mjs" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1"