From 68dcb0d8946902af9471fcdc90581fd088562687 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Mon, 23 Oct 2023 17:43:06 +0900 Subject: [PATCH] fix: wrong docs (#34) --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 47105e0..18e3245 100644 --- a/README.md +++ b/README.md @@ -61,24 +61,12 @@ in your code: * or, you can also use import maps * https://docs.deno.com/runtime/manual/basics/import_maps */ -import { ... } from 'https://esm.sh/@intlify/utils' +import { ... } from 'https://deno.land/x/intlify_utils/mod.ts' // something todo // ... ``` -
- Using Edge Releases - -```ts -import { ... } from 'https://esm.sh/@intlify/utils-edge' - -// something todo -// ... -``` - -
- ### 🥟 Bun ```sh @@ -95,13 +83,25 @@ in your HTML: * you can install via other CDN URL such as skypack, * or, you can also use import maps */ -import { isLocale } from 'https://deno.land/x/intlify_utils/mod.ts' +import { isLocale } from 'https://esm.sh/@intlify/utils' // something todo // ... ``` +
+ Using Edge Releases + +```ts +import { isLocale } from 'https://esm.sh/@intlify/utils-edge' + +// something todo +// ... +``` + +
+ ## 🍭 Playground You can play the below examples: