From e8d57cd3feb169c6a8e9cb11d96c0f2d0b7d50f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 15 Aug 2024 20:59:16 +0100 Subject: refactor: remove version::is_canary(), use ReleaseChannel instead (#25053) In preparation for https://github.com/denoland/deno/pull/25014, this commit removes public `is_canary()` method and instead uses an enum `ReleaseChannel` to be able to designate more "kinds" of builds. --- cli/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/main.rs') diff --git a/cli/main.rs b/cli/main.rs index 1752c3373..48e78becb 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -20,6 +20,7 @@ mod node; mod npm; mod ops; mod resolver; +mod shared; mod standalone; mod task_runner; mod tools; -- cgit v1.2.3