Skip to content
New issue

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

[docs] Fix Markdown syntax typo in Webpack docs. #5280

Merged
merged 1 commit into from
Jan 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/Webpack.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,10 @@ direct analogs in Jest's `moduleDirectories` and `moduleFileExtensions` options.
}
```

> Note: <rootDir> is a special token that gets replaced by Jest with the root of
> your project. Most of the time this will be the folder where your package.json
> is located unless you specify a custom `rootDir` option in your configuration.
> Note: `<rootDir>` is a special token that gets replaced by Jest with the root
> of your project. Most of the time this will be the folder where your
> `package.json` is located unless you specify a custom `rootDir` option in your
> configuration.

Similarly webpack's `resolve.root` option functions like setting the `NODE_PATH`
env variable, which you can set, or make use of the `modulePaths` option.
Expand Down