13 lines
299 B
Bash
13 lines
299 B
Bash
# Because we depend on nixpkgs sources, uploading to builders takes a long time
|
|
|
|
source_up
|
|
|
|
files=(flake-module.nix package.json package-lock.json)
|
|
if type nix_direnv_watch_file &>/dev/null; then
|
|
nix_direnv_watch_file "${files[@]}"
|
|
else
|
|
watch_file "${files[@]}"
|
|
fi
|
|
|
|
use flake .#ui --builders ''
|