We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The issue is that node-file-trace is following the symlinks is node_modules instead of returning them in the fileList output.
node-file-trace
node_modules
fileList
git clone https://github.com/mattste/now-node-builder-issue cd now-node-builder-issue yarn install cat > build.js <<- "EOF" const nodeFileTrace = require('@zeit/node-file-trace'); nodeFileTrace(['project-a/index.js'], { base: process.cwd(), filterBase: true, ts: true, }).then(({fileList}) => { console.log(fileList.join('\n')); }); EOF node build.js
project-a/index.js project-b/index.js
project-a/index.js project-b/index.js node_modules/project-a/index.js
cc @guybedford
The text was updated successfully, but these errors were encountered:
guybedford
Successfully merging a pull request may close this issue.
The issue is that
node-file-trace
is following the symlinks isnode_modules
instead of returning them in thefileList
output.Steps to reproduce
Actual
Expected
cc @guybedford
The text was updated successfully, but these errors were encountered: