Skip to content

Commit 233e562

Browse files
authored
fix: rollup bin file is in dist folder (#4809)
1 parent 8b644e7 commit 233e562

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/08-troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default {
109109
As Rollup needs to keep all module information in memory simultaneously to be able to analyze relevant side effects for tree-shaking, it is possible that bundling large projects reaches Node's memory limit. If this happens, it can help to increase this limit by running Rollup via
110110

111111
```shell
112-
node --max-old-space-size=8192 node_modules/rollup/bin/rollup -c
112+
node --max-old-space-size=8192 node_modules/rollup/dist/bin/rollup -c
113113
```
114114

115115
increasing `--max-old-space-size` as needed. Note that this number can safely surpass your available physical memory. In that case, Node will start paging memory to disk as needed.

0 commit comments

Comments
 (0)