mirror of
https://github.com/ading2210/libcurl.js.git
synced 2025-05-14 06:50:00 -04:00
fix npm exports
This commit is contained in:
parent
b40a776e26
commit
7284487430
2 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
# Libcurl.js Changelog:
|
# Libcurl.js Changelog:
|
||||||
|
|
||||||
|
## v0.6.1 (3/20/24):
|
||||||
|
- Fix NPM package exports
|
||||||
|
|
||||||
## v0.6.0 (3/20/24):
|
## v0.6.0 (3/20/24):
|
||||||
- Refactor JS and C code
|
- Refactor JS and C code
|
||||||
- Allow for multiple sessions with separate connection pools
|
- Allow for multiple sessions with separate connection pools
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "libcurl.js",
|
"name": "libcurl.js",
|
||||||
"version": "0.6.0",
|
"version": "0.6.1",
|
||||||
"description": "An experimental port of libcurl to WebAssembly for use in the browser.",
|
"description": "An experimental port of libcurl to WebAssembly for use in the browser.",
|
||||||
"main": "libcurl.mjs",
|
"main": "libcurl.mjs",
|
||||||
"exports": {
|
"exports": {
|
||||||
"bundled": "./libcurl_full.mjs"
|
".": "./libcurl.mjs",
|
||||||
|
"./bundled": "./libcurl_full.mjs"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue