From ec6547cd5f51fed03386dc0fa38e677d931f976b Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 8 Jul 2026 23:12:09 -0700 Subject: [PATCH] Update test page CDN versions to prepare for publishing. --- test/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/index.html b/test/index.html index f6b41d0..c5f3d1c 100644 --- a/test/index.html +++ b/test/index.html @@ -15,11 +15,11 @@ SPDX-License-Identifier: GPL-3.0-or-later } catch (err) { console.warn(err) try { - NanoPow = await import('https://unpkg.com/nano-pow@5.1/dist/index.js') + NanoPow = await import('https://unpkg.com/nano-pow@5.2/dist/index.js') } catch (err) { console.warn(err) try { - NanoPow = await import('https://cdn.jsdelivr.net/npm/nano-pow@5.1/dist/index.js') + NanoPow = await import('https://cdn.jsdelivr.net/npm/nano-pow@5.2/dist/index.js') } catch (err) { throw new Error(`Failed to load NanoPow ${err}`) } @@ -31,11 +31,11 @@ SPDX-License-Identifier: GPL-3.0-or-later } catch (err) { console.warn(err) try { - ({ Cache, stats } = await import('https://unpkg.com/nano-pow@5.1/dist/utils/index.js')) + ({ Cache, stats } = await import('https://unpkg.com/nano-pow@5.2/dist/utils/index.js')) } catch (err) { console.warn(err) try { - ({ Cache, stats } = await import('https://cdn.jsdelivr.net/npm/nano-pow@5.1/dist/utils/index.js')) + ({ Cache, stats } = await import('https://cdn.jsdelivr.net/npm/nano-pow@5.2/dist/utils/index.js')) } catch (err) { throw new Error(`Failed to load NanoPow utilities ${err}`) } -- 2.52.0