diff options
author | Nick Reilingh <nreiling@bard.edu> | 2023-05-15 12:26:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-15 12:26:14 -0400 |
commit | 88b2de2de9c303343893b0dc922bd07c7d67ae5c (patch) | |
tree | 8610ebbefd5a22ced42c2fbbe0296204cc1096f4 | |
parent | 8d85bbe1d02137220746a794a2149754a0c638b4 (diff) | |
download | PerlNavigator-88b2de2de9c303343893b0dc922bd07c7d67ae5c.zip |
Fix README.md for build from source for other editors
Running `tsc` in the project root doesn't appear to do anything. Need to `cd` into `server` and then run `tsc`. Calling via `npx` is better here since you don't have to have installed `tsc` globally beforehand.
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -59,7 +59,8 @@ Currently, this is not yet packaged for other editors but you can build from sou git clone https://github.com/bscan/PerlNavigator cd PerlNavigator/ npm run ci-all -tsc +cd server/ +npx tsc ``` ### Sublime Text |