vercel / nft

Node.js dependency tracing utility
https://npmjs.com/@vercel/nft
MIT License
1.31k stars 136 forks source link

chore(readme): Add parentheses to the end of functions in readme #403

Closed 7Silva closed 6 months ago

7Silva commented 6 months ago

I just added parentheses to the functions that were missing them.

Old:

const { fileList } = await nodeFileTrace(files, {
  base: process.cwd()
}
const { fileList } = await nodeFileTrace(files, {
  processCwd: path.resolve(__dirname)
}

New:

const { fileList } = await nodeFileTrace(files, {
  base: process.cwd()
});
const { fileList } = await nodeFileTrace(files, {
  processCwd: path.resolve(__dirname)
});
github-actions[bot] commented 4 months ago

:tada: This PR is included in version 0.26.5 :tada:

The release is available on:

Your semantic-release bot :package::rocket: