当我运行ng update
将 Angular 7 升级到 8 时,在 @angular/core 迁移期间出现“内存不足”错误:
FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
这并不特别令人惊讶 -Out of memory
当我跑步时我ng build
也会得到。作为解决方案,我们运行npm run build
配置为node --max_old_space_size=10240 ./node_modules/@angular/cli/bin/ng build
所以,我的问题是如何为包 @angular/core 配置迁移以使用更多内存?
更新:按照建议,我重新进行了更新
node --max_old_space_size=10240 ./node_modules/.bin/ng update @angular/core --from 7 --to 8 --migrate-only
但我收到一个错误:
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
^^^^^^^
SyntaxError: missing ) after argument list
似乎引号适用于 Linux 环境并在 Windows 上中断...