From 384a2fd35edc38a33e53755f276368b217877e82 Mon Sep 17 00:00:00 2001 From: "Rong Sen Ng (motss)" Date: Thu, 31 Oct 2019 23:03:30 +0800 Subject: [PATCH] v0.7.0 --- 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 c63509d..1446460 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.1/deep_clone/mod.ts"; +import { deepClone } from "https://denopkg.com/motss/deno_mod@v0.7.0/deep_clone/mod.ts"; (async () => { const simpleObject = { diff --git a/delay_until/README.md b/delay_until/README.md index a672541..8b8faee 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.1/delay_until/mod.ts"; +import { delayUntil } from "https://denopkg.com/motss/deno_mod@v0.7.0/delay_until/mod.ts"; (async () => { await delayUntil(3e3); diff --git a/jsmodern/README.md b/jsmodern/README.md index 38e4744..b00da33 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@0.6.1/jsmodern/extend.ts"; -import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@0.6.1/jsmodern/array.ts"; +import { extend } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.7.0/jsmodern/extend.ts"; +import { sum } from "https://cdn.jsdelivr.net/gh/motss/deno_mod@v0.7.0/jsmodern/array.ts"; extend({ array: [sum] }); diff --git a/lit_ntml/README.md b/lit_ntml/README.md index 72d7d97..8688bcc 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.1/lit_ntml/mod.ts"; +import { html } from "https://denopkg.com/motss/deno_mod@v0.7.0/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 ef75510..bdd8ef2 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.1/normalize_diacritics/mod.ts"; +import { normalize } from "https://denopkg.com/motss/deno_mod@v0.7.0/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 264c61b..ca9fd1b 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.1/polling_observer/mod.ts"; +import { PollingObserver } from "https://denopkg.com/motss/deno_mod@v0.7.0/polling_observer/mod.ts"; const obs = new PollingObserver((data /** list, observer */) => { const { status, items } = data || {};