···1+#!/usr/bin/env bash
2+set -e
3+if [[ ! -d "/home/naomi/Projects/stare" ]]; then
4+ echo "Cannot find source directory; Did you move it?"
5+ echo "(Looking for "/home/naomi/Projects/stare")"
6+ echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
7+ exit 1
8+fi
9+10+# rebuild the cache forcefully
11+_nix_direnv_force_reload=1 direnv exec "/home/naomi/Projects/stare" true
12+13+# Update the mtime for .envrc.
14+# This will cause direnv to reload again - but without re-building.
15+touch "/home/naomi/Projects/stare/.envrc"
16+17+# Also update the timestamp of whatever profile_rc we have.
18+# This makes sure that we know we are up to date.
19+touch -r "/home/naomi/Projects/stare/.envrc" "/home/naomi/Projects/stare/.direnv"/*.rc
···1+name = "stare"
2+version = "1.0.0"
3+4+# Fill out these fields if you intend to generate HTML documentation or publish
5+# your project to the Hex package manager.
6+#
7+# description = ""
8+# licences = ["Apache-2.0"]
9+# repository = { type = "github", user = "", repo = "" }
10+# links = [{ title = "Website", href = "" }]
11+#
12+# For a full reference of all the available options, you can have a look at
13+# https://gleam.run/writing-gleam/gleam-toml/.
14+15+[dependencies]
16+gleam_stdlib = ">= 0.44.0 and < 2.0.0"
17+shellout = ">= 1.7.0 and < 2.0.0"
18+simplifile = ">= 2.3.0 and < 3.0.0"
19+20+[dev-dependencies]
21+gleeunit = ">= 1.0.0 and < 2.0.0"
+16
manifest.toml
···0000000000000000
···1+# This file was generated by Gleam
2+# You typically do not need to edit this file
3+4+packages = [
5+ { name = "filepath", version = "1.1.2", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "filepath", source = "hex", outer_checksum = "B06A9AF0BF10E51401D64B98E4B627F1D2E48C154967DA7AF4D0914780A6D40A" },
6+ { name = "gleam_stdlib", version = "0.63.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "5E216C7D5E8BE22359C9D7DAA2CFBD66039BC12565542F34CD033C5BB57071ED" },
7+ { name = "gleeunit", version = "1.6.1", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "FDC68A8C492B1E9B429249062CD9BAC9B5538C6FBF584817205D0998C42E1DAC" },
8+ { name = "shellout", version = "1.7.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "shellout", source = "hex", outer_checksum = "1BDC03438FEB97A6AF3E396F4ABEB32BECF20DF2452EC9A8C0ACEB7BDDF70B14" },
9+ { name = "simplifile", version = "2.3.0", build_tools = ["gleam"], requirements = ["filepath", "gleam_stdlib"], otp_app = "simplifile", source = "hex", outer_checksum = "0A868DAC6063D9E983477981839810DC2E553285AB4588B87E3E9C96A7FB4CB4" },
10+]
11+12+[requirements]
13+gleam_stdlib = { version = ">= 0.44.0 and < 2.0.0" }
14+gleeunit = { version = ">= 1.0.0 and < 2.0.0" }
15+shellout = { version = ">= 1.7.0 and < 2.0.0" }
16+simplifile = { version = ">= 2.3.0 and < 3.0.0" }