We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed5714 commit c1afdd9Copy full SHA for c1afdd9
packages/edge-bundler/node/formats/tarball.ts
@@ -13,7 +13,7 @@ import { listRecursively } from '../utils/fs.js'
13
import { ImportMap } from '../import_map.js'
14
import { getFileHash } from '../utils/sha256.js'
15
16
-const TARBALL_EXTENSION = '.tar'
+const TARBALL_EXTENSION = '.tar.gz'
17
18
interface Manifest {
19
functions: Record<string, string>
@@ -111,6 +111,7 @@ export const bundle = async ({
111
{
112
cwd: bundleDir.path,
113
file: tarballPath,
114
+ gzip: true,
115
noDirRecurse: true,
116
onWriteEntry(entry) {
117
const relativePath = path.relative(bundleDir.path, path.join('/', entry.path))
0 commit comments