From 394718bcd4428feca1da19f094ac5a5d39ccc0ed Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Fri, 1 Nov 2024 12:19:50 -0700 Subject: [PATCH] chore: use bash instead of sh syntax highlighting --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3ec1812..0ca8f30 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ you know what you are doing. Allow the `.envrc`: -```sh +```bash direnv allow ``` @@ -28,7 +28,7 @@ Here's how to do it locally. First, we need to build the site. Run -```sh +```bash hakyll-site build # sometimes, we need to ignore the cache if things aren't working @@ -51,7 +51,7 @@ In the directory, there is a `node_modules` symlink to `result/lib/node_modules`. If we build the `nodeDeps` package, the `node_modules` will be made available at this path. So, run the following: -```sh +```bash nix build .#nodeDeps ``` @@ -61,7 +61,7 @@ need to re-run the above command or else node_modules will not be accessible. Finally, run the following to generate the bundled CSS and JS files. -``` +```bash rollup -c ```