Skip to content

Commit 3514a13

Browse files
committed
chore(wip): ??? at least it doesn't hang now
1 parent bac5701 commit 3514a13

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/zip-it-and-ship-it/src/runtimes/node/bundlers/zisi/published.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const getPublishedFiles = async function (modulePath: string): Promise<st
55
const ignore = getIgnoredFiles(modulePath)
66
const publishedFiles = await glob(`${modulePath}/**`, {
77
ignore,
8+
followSymbolicLinks: false,
89
onlyFiles: true,
910
absolute: true,
1011
dot: true,

packages/zip-it-and-ship-it/src/runtimes/node/bundlers/zisi/tree_files.ts

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const getTreeFiles = async function (srcPath: string, stat: Stats): Promi
1010

1111
return await glob(`${srcPath}/**`, {
1212
ignore: `${srcPath}/**/node_modules/**`,
13+
followSymbolicLinks: false,
1314
onlyFiles: true,
1415
absolute: true,
1516
})

0 commit comments

Comments
 (0)