From 59b7c2527069a0762817c05875a86c320b0a4b86 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 24 Apr 2024 16:52:57 +0100 Subject: [PATCH] Fix patch release script (#3597) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We upgraded our version of `tar`, but forgot to update this import. This fixes that. ### Change Type - [x] `internal` — Does not affect user-facing stuff - [x] `bugfix` — Bug fix --- scripts/lib/didAnyPackageChange.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/didAnyPackageChange.ts b/scripts/lib/didAnyPackageChange.ts index ce20bba0f..95eba281e 100644 --- a/scripts/lib/didAnyPackageChange.ts +++ b/scripts/lib/didAnyPackageChange.ts @@ -1,5 +1,5 @@ import { writeFileSync } from 'fs' -import tar from 'tar' +import * as tar from 'tar' import tmp from 'tmp' import { exec } from './exec' import { PackageDetails, getAllPackageDetails } from './publishing'