You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

travis.md 765 B

3 years ago
123456789101112131415161718
  1. [Travis CI](https://travis-ci.org/) detects the use of Yarn by the presence of `yarn.lock` in the repository root.
  2. If it is available, Travis CI will install `yarn` if necessary, and execute `yarn` as the default install command.
  3. If your install phase requires more, it is necessary to install Yarn yourself until it is pre-installed on build images.
  4. ```yml
  5. before_install: # if "install" is overridden
  6. # Repo for Yarn
  7. - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
  8. - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
  9. - sudo apt-get update -qq
  10. - sudo apt-get install -y -qq yarn
  11. cache:
  12. yarn: true
  13. ```
  14. <!-- prettier-ignore -->
  15. {% include_relative _ci/deb-specific-version.md %}

js yarn包管理组件依赖分析

Contributors (1)