-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move core node-file-trace logic into turbopack
- Loading branch information
Showing
8 changed files
with
435 additions
and
337 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# node-file-trace | ||
|
||
Node file trace (nft) is a binary / library that can be used to precisely determine | ||
which files (including those in `node_modules`) are needed for a given application at | ||
run time. | ||
|
||
## Usage | ||
|
||
There are a few commands available (accessed via the `Args` struct if consuming as a | ||
library). You can see these by running the binary. The binary should be self-documenting. | ||
|
||
```bash | ||
cargo run | ||
``` | ||
|
||
## Externals | ||
|
||
Tracing externals is not currently supported, though support will be added soon. |
Oops, something went wrong.