Fix patch release script (#3597)

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
This commit is contained in:
alex 2024-04-24 16:52:57 +01:00 committed by GitHub
parent bfc8b6a901
commit 59b7c25270
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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'