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

Commit 61a1081

Browse files
committed
Remvoe debug message
1 parent b2f03fa commit 61a1081

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cli.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,9 @@ async function main() {
100100
let verison: string | null = null
101101
for (const key in importMap.imports) {
102102
const url = importMap.imports[key]
103-
console.log(url, /\/\/deno\.land\/x\/aleph@v?\d+\.\d+\.\d+(-[a-z0-9\.]+)?\//.test(url))
104103
if (/\/\/deno\.land\/x\/aleph@v?\d+\.\d+\.\d+(-[a-z0-9\.]+)?\//.test(url)) {
105104
const [prefix, rest] = util.splitBy(url, '@')
106105
const [ver, suffix] = util.splitBy(rest, '/')
107-
console.log(ver)
108106
if (ver !== 'v' + VERSION && updateImportMaps === null) {
109107
updateImportMaps = confirm(`You are using a different version of Aleph.js, expect ${ver} -> v${bold(VERSION)}, update '${basename(importMapFile)}'?`)
110108
}

0 commit comments

Comments
 (0)