You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my Node.js app, I have a directory, let's call it myPage (src/node_modules/myModule/myPage) symlinked in src/pages/myPage, but _getMainPathsFromEntryPointArgument only allows vanilla directory bundling by checking fs.lstatSync( entryPoints ).isDirectory().
It would be nice to include support for symbolic linking in the condition e.g. isSymbolicLink().
The text was updated successfully, but these errors were encountered:
Hi @dgbeck,
In my Node.js app, I have a directory, let's call it myPage (
src/node_modules/myModule/myPage
) symlinked insrc/pages/myPage
, but_getMainPathsFromEntryPointArgument
only allows vanilla directory bundling by checkingfs.lstatSync( entryPoints ).isDirectory()
.It would be nice to include support for symbolic linking in the condition e.g.
isSymbolicLink()
.The text was updated successfully, but these errors were encountered: