iosevka: correctly set build verbosity and suppress progress bar

This commit is contained in:
lunik1
2024-12-13 22:22:17 +00:00
parent db3eb30cdf
commit fb9154a77a
+4 -1
View File
@@ -117,7 +117,10 @@ buildNpmPackage rec {
buildPhase = ''
export HOME=$TMPDIR
runHook preBuild
npm run build --no-update-notifier --targets ttf::$pname -- --jCmd=$NIX_BUILD_CORES --verbose=9
# pipe to cat to disable progress bar
npm run build --no-update-notifier --targets ttf::$pname -- --jCmd=$NIX_BUILD_CORES --verbosity=9 | cat
runHook postBuild
'';