From 57c1328079c55762c85b7c2551c4534d6c536bd0 Mon Sep 17 00:00:00 2001 From: Youwen Wu <38934577+couscousdude@users.noreply.github.com> Date: Sun, 10 Mar 2024 00:44:23 -0800 Subject: [PATCH 1/2] docs: fix grammar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c71551..909ea02 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ needs. It's tightly integrated with our proprietary robot features, like collision warning and detection, and displays robot drive modes. Shuffleboard, while easy to set up, lacks the fine-grained adjustments and -customization which is afforded by a fully custom solution. The UI looks +customization which are afforded by a fully custom solution. The UI looks outdated and is quite ugly. In stark contrast, Jankboard's UI is reminiscient of and inspired by dashboards designed by car manufacturers, making it easy for the driver to get the information they need at a glance, without squinting at From 037906609fb1b6e2e29e54dd08942e1ce0ad0482 Mon Sep 17 00:00:00 2001 From: Youwen Wu <38934577+couscousdude@users.noreply.github.com> Date: Sun, 10 Mar 2024 00:45:44 -0800 Subject: [PATCH 2/2] docs: change all references of npm to pnpm --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 909ea02..f344a06 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ to get the development build up and running. server for the frontend. Note that since this is basically just running the `vite` development server and then connecting the Tauri webview to it, there may be slightly inconsistent behavior in dev mode versus production mode. -5. To create a production binary, run `npm run tauri build`. Tauri +5. To create a production binary, run `pnpm run tauri build`. Tauri cross-compilation is still in beta, so you should generally try to build targeting the same OS you're currently running. Check [the Tauri docs](https://tauri.app/v1/guides/building/) for more information. @@ -99,7 +99,7 @@ to get the development build up and running. server. - If you don't have access to a development environment that supports running standalone executables (eg. Github Codespaces), you can try running - `npm run dev` instead of `npm run tauri dev`, which will open a development + `pnpm run dev` instead of `pnpm run tauri dev`, which will open a development server at `localhost:5173` with the frontend running in the web. However, app behavior may be inconsistent and you will not get any features from the Rust backend.