diff options
Diffstat (limited to 'node_modules/resolve-cwd')
-rw-r--r-- | node_modules/resolve-cwd/index.js | 5 | ||||
-rw-r--r-- | node_modules/resolve-cwd/license | 21 | ||||
-rw-r--r-- | node_modules/resolve-cwd/package.json | 41 | ||||
-rw-r--r-- | node_modules/resolve-cwd/readme.md | 57 |
4 files changed, 0 insertions, 124 deletions
diff --git a/node_modules/resolve-cwd/index.js b/node_modules/resolve-cwd/index.js deleted file mode 100644 index 82dd33c90..000000000 --- a/node_modules/resolve-cwd/index.js +++ /dev/null @@ -1,5 +0,0 @@ -'use strict'; -const resolveFrom = require('resolve-from'); - -module.exports = moduleId => resolveFrom(process.cwd(), moduleId); -module.exports.silent = moduleId => resolveFrom.silent(process.cwd(), moduleId); diff --git a/node_modules/resolve-cwd/license b/node_modules/resolve-cwd/license deleted file mode 100644 index 654d0bfe9..000000000 --- a/node_modules/resolve-cwd/license +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/node_modules/resolve-cwd/package.json b/node_modules/resolve-cwd/package.json deleted file mode 100644 index 15dd87fc0..000000000 --- a/node_modules/resolve-cwd/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "resolve-cwd", - "version": "2.0.0", - "description": "Resolve the path of a module like `require.resolve()` but from the current working directory", - "license": "MIT", - "repository": "sindresorhus/resolve-cwd", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=4" - }, - "scripts": { - "test": "xo && ava" - }, - "files": [ - "index.js" - ], - "keywords": [ - "require", - "resolve", - "path", - "module", - "from", - "like", - "cwd", - "current", - "working", - "directory", - "import" - ], - "dependencies": { - "resolve-from": "^3.0.0" - }, - "devDependencies": { - "ava": "*", - "xo": "*" - } -} diff --git a/node_modules/resolve-cwd/readme.md b/node_modules/resolve-cwd/readme.md deleted file mode 100644 index 46cdc36aa..000000000 --- a/node_modules/resolve-cwd/readme.md +++ /dev/null @@ -1,57 +0,0 @@ -# resolve-cwd [](https://travis-ci.org/sindresorhus/resolve-cwd) - -> Resolve the path of a module like [`require.resolve()`](https://nodejs.org/api/globals.html#globals_require_resolve) but from the current working directory - - -## Install - -``` -$ npm install --save resolve-cwd -``` - - -## Usage - -```js -const resolveCwd = require('resolve-cwd'); - -console.log(__dirname); -//=> '/Users/sindresorhus/rainbow' - -console.log(process.cwd()); -//=> '/Users/sindresorhus/unicorn' - -resolveCwd('./foo'); -//=> '/Users/sindresorhus/unicorn/foo.js' -``` - - -## API - -### resolveCwd(moduleId) - -Like `require()`, throws when the module can't be found. - -### resolveCwd.silent(moduleId) - -Returns `null` instead of throwing when the module can't be found. - -#### moduleId - -Type: `string` - -What you would use in `require()`. - - -## Related - -- [resolve-from](https://github.com/sindresorhus/resolve-from) - Resolve the path of a module from a given path -- [req-from](https://github.com/sindresorhus/req-from) - Require a module from a given path -- [req-cwd](https://github.com/sindresorhus/req-cwd) - Require a module from the current working directory -- [resolve-pkg](https://github.com/sindresorhus/resolve-pkg) - Resolve the path of a package regardless of it having an entry point -- [lazy-req](https://github.com/sindresorhus/lazy-req) - Require modules lazily - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) |