本地安装的软件包通过以下方式进行缓存:
# .travis.yml ... cache: directories: - node_modules ...
但是如何缓存全球安装的软件包($npm install -g< ...>)来加快我的版本?
这是我怎么做到的
原文链接:https://www.f2er.com/ubuntu/347295.htmlcache: directories: # Replace "grunt-cli" with whatever global binary you're using - $(npm config get prefix)/bin/grunt-cli