ubuntu – 如何缓存Travis CI上的全局NPM包?

前端之家收集整理的这篇文章主要介绍了ubuntu – 如何缓存Travis CI上的全局NPM包?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
本地安装的软件包通过以下方式进行缓存:
# .travis.yml
...
cache:
  directories:
  - node_modules
...

但是如何缓存全球安装的软件包($npm install -g< ...>)来加快我的版本?

这是我怎么做到的
cache:
  directories:
    # Replace "grunt-cli" with whatever global binary you're using
    - $(npm config get prefix)/bin/grunt-cli
原文链接:https://www.f2er.com/ubuntu/347295.html

猜你在找的Ubuntu相关文章