Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Oct 23, 2024
1 parent b700493 commit 5e2856f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/main/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import os from "node:os"
export const mode = process.env.NODE_ENV
export const isDev = mode === "development"

export const channel = isDev ? "development" : "beta"
export const channel: "development" | "beta" | "alpha" | "stable" = isDev ? "development" : "beta"

const { platform } = process
export const isMacOS = platform === "darwin"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@
"tag": false,
"changelog": true,
"allowed_branches": [
"dev",
"feature/updater-beta"
"dev"
]
},
"productName": "Follow"
Expand Down

0 comments on commit 5e2856f

Please sign in to comment.