Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

readme.md 806 B

3 år sedan
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)