From cc4009a4afef56e3f9005b75386d24ff1e582b68 Mon Sep 17 00:00:00 2001 From: ading2210 Date: Mon, 26 Feb 2024 23:13:55 -0500 Subject: [PATCH] fix sed expression again --- 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 1dcd95c..3effa33 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/const 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 73f8b3b..80bfb0c 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "libcurl.js", - "version": "0.3.5", + "version": "0.3.6", "description": "An experimental port of libcurl to WebAssembly for use in the browser.", "main": "libcurl.mjs", "scripts": {