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

Commit c357565

Browse files
committed
v0.3.0-alpha.13
1 parent fc425ff commit c357565

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

cli/upgrade.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export default async function (version = 'latest', forceUpgrade = false) {
5050
})
5151
const status = await p.status()
5252
if (status.success) {
53-
if (cmdExists) {
53+
if (cmdExists && !forceUpgrade) {
5454
console.log(`Aleph.js is up to ${version}`)
5555
} else {
5656
console.log('Aleph.js was installed successfully')
57-
console.log(`Run 'aleph --help' to get started`)
57+
console.log(`Run 'aleph -h' to get started`)
5858
}
5959
}
6060
Deno.exit(status.code)

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/[email protected].12/mod.ts",
4-
"aleph/": "https://deno.land/x/[email protected].12/",
3+
"aleph": "https://deno.land/x/[email protected].13/mod.ts",
4+
"aleph/": "https://deno.land/x/[email protected].13/",
55
"react": "https://esm.sh/[email protected]",
66
"react-dom": "https://esm.sh/[email protected]"
77
}

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.3.0-alpha.12'
1+
export const VERSION = '0.3.0-alpha.13'

0 commit comments

Comments
 (0)