From b22f6770c8bd084d66950655203c61dd701b3d90 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Jun 2022 08:51:19 +0200 Subject: Remove node_modules --- node_modules/global-dirs/readme.md | 72 -------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 node_modules/global-dirs/readme.md (limited to 'node_modules/global-dirs/readme.md') diff --git a/node_modules/global-dirs/readme.md b/node_modules/global-dirs/readme.md deleted file mode 100644 index 0276ee1..0000000 --- a/node_modules/global-dirs/readme.md +++ /dev/null @@ -1,72 +0,0 @@ -# global-dirs - -> Get the directory of globally installed packages and binaries - -Uses the same resolution logic as `npm` and `yarn`. - -## Install - -``` -$ npm install global-dirs -``` - -## Usage - -```js -const globalDirectories = require('global-dirs'); - -console.log(globalDirectories.npm.prefix); -//=> '/usr/local' - -console.log(globalDirectories.npm.packages); -//=> '/usr/local/lib/node_modules' - -console.log(globalDirectories.npm.binaries); -//=> '/usr/local/bin' - -console.log(globalDirectories.yarn.packages); -//=> '/Users/sindresorhus/.config/yarn/global/node_modules' -``` - -## API - -### globalDirectories - -#### npm -#### yarn - -##### packages - -Directory with globally installed packages. - -Equivalent to `npm root --global`. - -##### binaries - -Directory with globally installed binaries. - -Equivalent to `npm bin --global`. - -##### prefix - -Directory with directories for packages and binaries. You probably want either of the above. - -Equivalent to `npm prefix --global`. - -## Related - -- [import-global](https://github.com/sindresorhus/import-global) - Import a globally installed module -- [resolve-global](https://github.com/sindresorhus/resolve-global) - Resolve the path of a globally installed module -- [is-installed-globally](https://github.com/sindresorhus/is-installed-globally) - Check if your package was installed globally - ---- - -
- - Get professional support for this package with a Tidelift subscription - -
- - Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. -
-
-- cgit