diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2025-03-07 19:42:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-07 19:42:39 +0900 |
| commit | d7706ef1b5148c456df1c971ae598f6091016ac0 (patch) | |
| tree | 8b10144aab9b11916b28be023423de85aab55345 /scripts | |
| parent | chore(deps): update [frontend] update dependencies to v10 (#15619) (diff) | |
| download | sharkey-d7706ef1b5148c456df1c971ae598f6091016ac0.tar.gz sharkey-d7706ef1b5148c456df1c971ae598f6091016ac0.tar.bz2 sharkey-d7706ef1b5148c456df1c971ae598f6091016ac0.zip | |
fix(deps): update [root] update dependencies (major) (#15620)
* fix(deps): update [root] update dependencies
* fix: migrate tar library
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/tarball.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tarball.mjs b/scripts/tarball.mjs index e9d8900aca..fddbe3b04a 100644 --- a/scripts/tarball.mjs +++ b/scripts/tarball.mjs @@ -9,7 +9,7 @@ import { resolve } from 'node:path'; import { fileURLToPath } from 'node:url'; import glob from 'fast-glob'; import walk from 'ignore-walk'; -import Pack from 'tar/lib/pack.js'; +import { Pack } from 'tar/pack'; import meta from '../package.json' with { type: "json" }; const cwd = fileURLToPath(new URL('..', import.meta.url)); |