Unverified Commit 590cdc37 authored by edef's avatar edef Committed by GitHub
Browse files

wrangler: don't strip text files (#442990)

parents 37f6a72a ad60b6f0
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -105,6 +105,12 @@ stdenv.mkDerivation (finalAttrs: {
  nativeInstallCheckInputs = [
    versionCheckHook
  ];

  preFixup = ''
    # fixupPhase spends a lot of time trying to strip text files, which is especially slow on Darwin
    stripExclude+=("*.js" "*.ts" "*.map" "*.json" "*.md")
  '';

  meta = {
    description = "Command-line interface for all things Cloudflare Workers";
    homepage = "https://github.com/cloudflare/workers-sdk#readme";