mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
Revolt client built with Preact.
a4051330a3
- replaced many uses of `as any` with another more specific cast `as T` - filled in missing typed for items that needed to be typed - new runtime code was added where necessary to satisfy the new types with comments - added missing theme variable "sidebar-active" to the Theme variables - forms using `react-hook-form` are now typechecked - changed some instances of `target` into `currentTarget` while removing `as any` assertions |
||
---|---|---|
.github | ||
external | ||
public/assets | ||
src | ||
ui | ||
.env | ||
.gitignore | ||
.gitmodules | ||
.prettierrc | ||
index.html | ||
LICENSE | ||
package.json | ||
publish.sh | ||
README.md | ||
tsconfig.json | ||
vercel.json | ||
VERSION | ||
vite.config.ts | ||
yarn.lock |
Revite
This is the web client for Revolt, which is also available live at app.revolt.chat.
You can track progress on the client on our Wekan board.
Official screenshots of the client are available in this Google Drive folder.
CLI Commands
-
yarn dev
: Runs a development server. -
yarn build
: Creates a production build of the client. -
yarn preview
: Starts a local server with the production build. -
yarn lint
: Runs ESLint to check project. -
yarn fmt
: Runs prettier on source code. -
yarn typecheck
: Runs Typescript compiler in noEmit mode.