diff options
| author | sirsegv <56238661+squidink7@users.noreply.github.com> | 2024-06-13 10:48:01 +0930 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-13 10:18:01 +0900 |
| commit | 1616cb533ee7099bdf8ea982ea0557b1081e9c6c (patch) | |
| tree | b04f5eb93e3aa1216afcf9e1cee67b8161d9622c /scripts/tarball.mjs | |
| parent | node_modulesをvolume化して高速化+パーミッション問題回避... (diff) | |
| download | sharkey-1616cb533ee7099bdf8ea982ea0557b1081e9c6c.tar.gz sharkey-1616cb533ee7099bdf8ea982ea0557b1081e9c6c.tar.bz2 sharkey-1616cb533ee7099bdf8ea982ea0557b1081e9c6c.zip | |
Fix json module imports for node 22 (#13875)
Diffstat (limited to 'scripts/tarball.mjs')
| -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 b1862ad289..e9d8900aca 100644 --- a/scripts/tarball.mjs +++ b/scripts/tarball.mjs @@ -10,7 +10,7 @@ import { fileURLToPath } from 'node:url'; import glob from 'fast-glob'; import walk from 'ignore-walk'; import Pack from 'tar/lib/pack.js'; -import meta from '../package.json' assert { type: "json" }; +import meta from '../package.json' with { type: "json" }; const cwd = fileURLToPath(new URL('..', import.meta.url)); const ignore = [ |