From 2679f9274995c9780df859c8eaf6bca8b7645433 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Tue, 23 Apr 2024 10:21:31 -0400 Subject: [PATCH] Update jsdelivr link --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bc24b060..e0974f0e 100644 --- a/README.md +++ b/README.md @@ -117,13 +117,15 @@ You can load the `esm/parquet_wasm.js` file directly from a CDN ```js const parquet = await import( - "https://cdn.jsdelivr.net/npm/parquet-wasm@0.6.0/esm/parquet_wasm.js" + "https://cdn.jsdelivr.net/npm/parquet-wasm@0.6.0/esm/+esm" ) await parquet.default(); const wasmTable = parquet.readParquet(...); ``` +This specific endpoint will minify the ESM before you receive it. + ### Debug functions These functions are not present in normal builds to cut down on bundle size. To create a custom build, see [Custom Builds](#custom-builds) below.