[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs(vite-node): fix typos in vite-node README (#4082)

authored by

Matt Kantor and committed by
GitHub
(Sep 8, 2023, 11:15 AM +0300) 696b79e3 b5bf3290

+2 -2
+2 -2
packages/vite-node/README.md
··· 130 130 131 131 Sometimes you might want to inspect the transformed code to investigate issues. You can set environment variable `VITE_NODE_DEBUG_DUMP=true` to let vite-node write the transformed result of each module under `.vite-node/dump`. 132 132 133 - If you want to debug by modifying the dumped code, you can change the value of `VITE_NODE_DEBUG_DUMP` to `load` and search for the dumpped files and use them for executing. 133 + If you want to debug by modifying the dumped code, you can change the value of `VITE_NODE_DEBUG_DUMP` to `load` and search for the dumped files and use them for executing. 134 134 135 135 ```bash 136 136 VITE_NODE_DEBUG_DUMP=load vite-node example.ts ··· 151 151 152 152 ### Debug Execution 153 153 154 - If the process get stuck, it might because there is a unresolvable circular dependencies, you can set `VITE_NODE_DEBUG_RUNNER=true` to vite-node warn about it. 154 + If the process gets stuck, it might be because there are unresolvable circular dependencies. You can set `VITE_NODE_DEBUG_RUNNER=true` for vite-node to warn about this. 155 155 156 156 ```bash 157 157 VITE_NODE_DEBUG_RUNNER=true vite-node example.ts