From b128e45ea0bdf3e65137bac8791e150a4e11e26d Mon Sep 17 00:00:00 2001 From: "Rong Sen Ng (motss)" Date: Sun, 14 Jul 2019 01:44:18 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20v0.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deep_clone/README.md | 2 +- delay_until/README.md | 2 +- lit_ntml/README.md | 4 ++-- normalize_diacritics/README.md | 2 +- polling_observer/README.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deep_clone/README.md b/deep_clone/README.md index 7d9e343..c63509d 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://denopkg.com/motss/deno_mod@v0.6.0/deep_clone/mod.ts"; +import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.6.1/deep_clone/mod.ts"; (async () => { const simpleObject = { diff --git a/delay_until/README.md b/delay_until/README.md index a7fe00f..badc58c 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://denopkg.com/motss/deno_mod@v0.6.0/delay_until/mod.ts"; +import { delayUntil } from "https://denopkg.com/motss/deno_mod@v0.6.1/delay_until/mod.ts"; (async () => { await delayUntil(3e3); diff --git a/lit_ntml/README.md b/lit_ntml/README.md index 5df48fb..dd8a5c0 100644 --- a/lit_ntml/README.md +++ b/lit_ntml/README.md @@ -25,7 +25,7 @@ #### html() ```ts -import { html } from "https://denopkg.com/motss/deno_mod@v0.6.0/lit_ntml/mod.ts"; +import { html } from "https://denopkg.com/motss/deno_mod@v0.6.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 7b6b8c1..ef75510 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://denopkg.com/motss/deno_mod@v0.6.0/normalize_diacritics/mod.ts"; +import { normalize } from "https://denopkg.com/motss/deno_mod@v0.6.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 2e79159..6c2f6dc 100644 --- a/polling_observer/README.md +++ b/polling_observer/README.md @@ -38,7 +38,7 @@ interface DataType { items: Record[]; } -import { PollingObserver } from 'https://denopkg.com/motss/deno_mod@v0.6.0/polling_observer/mod.ts'; +import { PollingObserver } from 'https://denopkg.com/motss/deno_mod@v0.6.1/polling_observer/mod.ts'; const obs = new PollingObserver((data/** list, observer */) => { const { status, items } = data || {};