commitlint: run yarn with --offline while building

This avoids unnecessary warnings.
This commit is contained in:
Tom Hunze
2025-11-17 15:53:09 +01:00
parent 471c49e23a
commit 5866b1a278

View File

@@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: {
"resolve-extends" "execute-rule" "load" "read" "types" "cli") "resolve-extends" "execute-rule" "load" "read" "types" "cli")
for p in "''${pkgs[@]}" ; do for p in "''${pkgs[@]}" ; do
cd @commitlint/$p/ cd @commitlint/$p/
yarn run tsc --build --force yarn run --offline tsc --build --force
cd ../.. cd ../..
done done