Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

readme.md 806 B

il y a 3 ans
123456789101112131415161718192021222324252627282930
  1. # import-local [![Build Status](https://travis-ci.org/sindresorhus/import-local.svg?branch=master)](https://travis-ci.org/sindresorhus/import-local)
  2. > Let a globally installed package use a locally installed version of itself if available
  3. Useful for CLI tools that want to defer to the user's locally installed version when available, but still work if it's not installed locally. For example, [AVA](http://ava.li) and [XO](https://github.com/sindresorhus/xo) uses this method.
  4. ## Install
  5. ```
  6. $ npm install import-local
  7. ```
  8. ## Usage
  9. ```js
  10. const importLocal = require('import-local');
  11. if (importLocal(__filename)) {
  12. console.log('Using local version of this package');
  13. } else {
  14. // Code for both global and local version here…
  15. }
  16. ```
  17. ## License
  18. MIT © [Sindre Sorhus](https://sindresorhus.com)