From b0314bf8cb1eaa9d4ada4fa3b17f35950c3c7b60 Mon Sep 17 00:00:00 2001 From: ading2210 Date: Mon, 26 Feb 2024 23:03:23 -0500 Subject: [PATCH] fix es6 module not getting built properly --- client/build.sh | 2 +- client/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/build.sh b/client/build.sh index 1ef82b5..1dcd95c 100755 --- a/client/build.sh +++ b/client/build.sh @@ -91,4 +91,4 @@ python3 tools/patch_js.py $FRAGMENTS_DIR $OUT_FILE #generate es6 module cp $OUT_FILE $ES6_FILE -sed -i 's/window.libcurl/export const libcurl/' $ES6_FILE \ No newline at end of file +sed -i 's/const libcurl/export const libcurl/' $ES6_FILE \ No newline at end of file diff --git a/client/package.json b/client/package.json index d14d66f..73f8b3b 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "libcurl.js", - "version": "0.3.4", + "version": "0.3.5", "description": "An experimental port of libcurl to WebAssembly for use in the browser.", "main": "libcurl.mjs", "scripts": {