From 9aa8ea9873266d7026b82903686290fece75b126 Mon Sep 17 00:00:00 2001 From: "Rong Sen Ng (motss)" Date: Fri, 8 Nov 2019 00:59:45 +0800 Subject: [PATCH] 0.8.1 --- deep_clone/README.md | 2 +- delay_until/README.md | 2 +- jsmodern/README.md | 4 ++-- lit_ntml/README.md | 4 ++-- normalize_diacritics/README.md | 2 +- polling_observer/README.md | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/deep_clone/README.md b/deep_clone/README.md index 476093e..33e63de 100644 --- a/deep_clone/README.md +++ b/deep_clone/README.md @@ -22,7 +22,7 @@ ```ts /** Import from GH via `denopkg` */ -import { deepClone } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/deep_clone/mod.ts"; +import { deepClone } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/deep_clone/mod.ts"; (async () => { const simpleObject = { diff --git a/delay_until/README.md b/delay_until/README.md index e65352e..6aeda12 100644 --- a/delay_until/README.md +++ b/delay_until/README.md @@ -21,7 +21,7 @@ ```ts /** Import from GH via `denopkg` */ -import { delayUntil } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/delay_until/mod.ts"; +import { delayUntil } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/delay_until/mod.ts"; (async () => { await delayUntil(3e3); diff --git a/jsmodern/README.md b/jsmodern/README.md index a242335..1dfc1a5 100644 --- a/jsmodern/README.md +++ b/jsmodern/README.md @@ -20,8 +20,8 @@ ```ts // It is recommended to only import those extensions you need instead of everything. -import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0/jsmodern/extend.ts"; -import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.0/jsmodern/array.ts"; +import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.1/jsmodern/extend.ts"; +import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.8.1/jsmodern/array.ts"; extend({ array: [sum] }); diff --git a/lit_ntml/README.md b/lit_ntml/README.md index 20f703a..f86c1f4 100644 --- a/lit_ntml/README.md +++ b/lit_ntml/README.md @@ -25,7 +25,7 @@ #### html() ```ts -import { html } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/lit_ntml/mod.ts"; +import { html } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/lit_ntml/mod.ts"; const peopleList = ["Cash Black", "Vict Fisherman"]; const syncTask = () => `

Hello, World!

`; @@ -40,7 +40,7 @@ await html`${syncTask}${asyncLiteral}${asyncListTask}`; /** `

Hello, World!

`; const externalStyleLiteral = ``; diff --git a/normalize_diacritics/README.md b/normalize_diacritics/README.md index fce636d..0bb72ba 100644 --- a/normalize_diacritics/README.md +++ b/normalize_diacritics/README.md @@ -22,7 +22,7 @@ ```ts /** Import from GH via `denopkg` */ -import { normalize } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/normalize_diacritics/mod.ts"; +import { normalize } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/normalize_diacritics/mod.ts"; (async () => { const str = "söme stüff with áccènts"; diff --git a/polling_observer/README.md b/polling_observer/README.md index 7a6bb2b..ed598b5 100644 --- a/polling_observer/README.md +++ b/polling_observer/README.md @@ -38,7 +38,7 @@ interface DataType { items: Record[]; } -import { PollingObserver } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.0/polling_observer/mod.ts"; +import { PollingObserver } from "https://cdn.jsdelivr.net/motss/deno_mod@v0.8.1/polling_observer/mod.ts"; const obs = new PollingObserver((data /** list, observer */) => { const { status, items } = data || {};