Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 3bce4c7

Browse files
committed
chore: fix import map
1 parent 3dd1b78 commit 3bce4c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

import_map.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"imports": {
3-
"aleph": "https://deno.land/x/aleph@0.3.0-alpha.13/mod.ts",
4-
"aleph/": "https://deno.land/x/aleph@0.3.0-alpha.13/",
3+
"aleph": "https://deno.land/x/aleph@v0.3.0-alpha.13/mod.ts",
4+
"aleph/": "https://deno.land/x/aleph@v0.3.0-alpha.13/",
55
"react": "https://esm.sh/[email protected]",
66
"react-dom": "https://esm.sh/[email protected]"
77
}

publish.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export async function prepublish(version: string) {
1212
const data = await Deno.readTextFile('./import_map.json')
1313
const importMap = JSON.parse(data)
1414
Object.assign(importMap.imports, {
15-
'aleph': `https://deno.land/x/aleph@${version}/mod.ts`,
16-
'aleph/': `https://deno.land/x/aleph@${version}/`,
15+
'aleph': `https://deno.land/x/aleph@v${version}/mod.ts`,
16+
'aleph/': `https://deno.land/x/aleph@v${version}/`,
1717
})
1818
await Deno.writeTextFile(
1919
'./import_map.json',

0 commit comments

Comments
 (0)