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

Commit 3d4d860

Browse files
committed
Clean up
1 parent f56dd29 commit 3d4d860

File tree

6 files changed

+3
-109
lines changed

6 files changed

+3
-109
lines changed

cli.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const commands = {
1515
"dev": "Start the app in `development` mode",
1616
"start": "Start the app in `production` mode",
1717
"build": "Build the app into a worker",
18-
"upgrade": "Upgrade Aleph.js CLI",
1918
};
2019

2120
const helpMessage = `Aleph.js v${VERSION}
@@ -84,13 +83,6 @@ async function main() {
8483
return;
8584
}
8685

87-
// invoke `upgrade` command
88-
if (command === "upgrade") {
89-
const { default: upgrade } = await import(`./commands/upgrade.ts`);
90-
await upgrade(options.v || options.version || args[0] || "latest");
91-
return;
92-
}
93-
9486
// get denoDir
9587
const p = Deno.run({
9688
cmd: [Deno.execPath(), "info", "--json"],

commands/upgrade.ts

Lines changed: 0 additions & 24 deletions
This file was deleted.

compiler/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aleph-compiler"
3-
version = "0.3.0"
3+
version = "1.0.0-alpha.0"
44
description = "The compiler of Aleph.js written in Rust."
55
repository = "https://github.com/alephjs/aleph.js"
66
authors = ["The Aleph.js authors"]

install.ts

Lines changed: 0 additions & 74 deletions
This file was deleted.

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** `VERSION` managed by https://deno.land/x/publish */
2-
export const VERSION = "1.0.0";
2+
export const VERSION = "1.0.0-alpha.0";
33

44
/** whether is canary version */
55
export const isCanary = false;

0 commit comments

Comments
 (0)