Skip to content

Commit 3cea1e7

Browse files
Richienbsindresorhus
authored andcommittedNov 9, 2019
Return undefined if the found node_modules directory is not writable (#19)
1 parent da06f09 commit 3cea1e7

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
 

‎index.js

+14
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
'use strict';
22
const path = require('path');
3+
const fs = require('fs');
34
const commonDir = require('commondir');
45
const pkgDir = require('pkg-dir');
56
const makeDir = require('make-dir');
67

8+
const isWritable = path => {
9+
try {
10+
fs.accessSync(path, fs.constants.W_OK);
11+
return true;
12+
} catch (_) {
13+
return false;
14+
}
15+
};
16+
717
module.exports = (options = {}) => {
818
const {name} = options;
919
let directory = options.cwd;
@@ -17,6 +27,10 @@ module.exports = (options = {}) => {
1727
directory = pkgDir.sync(directory);
1828

1929
if (directory) {
30+
if (!isWritable(path.join(directory, 'node_modules'))) {
31+
return undefined;
32+
}
33+
2034
directory = path.join(directory, 'node_modules', '.cache', name);
2135

2236
if (directory && options.create) {

‎readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ findCacheDir({name: 'unicorns'});
4545

4646
### findCacheDir(options?)
4747

48-
Finds the cache directory using the supplied options. The algorithm tries to find a `package.json` file, searching every parent directory of the `cwd` specified (or implied from other options). It returns a `string` containing the absolute path to the cache directory, or `undefined` if `package.json` was never found.
48+
Finds the cache directory using the supplied options. The algorithm tries to find a `package.json` file, searching every parent directory of the `cwd` specified (or implied from other options). It returns a `string` containing the absolute path to the cache directory, or `undefined` if `package.json` was never found or if the `node_modules` directory is unwritable.
4949

5050
#### options
5151

0 commit comments

Comments
 (0)
Please sign in to comment.