Blame view

node_modules/find-cache-dir/index.js 662 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  'use strict';
  const path = require('path');
  const commonDir = require('commondir');
  const pkgDir = require('pkg-dir');
  const makeDir = require('make-dir');
  
  module.exports = options => {
  	const name = options.name;
  	let dir = options.cwd;
  
  	if (options.files) {
  		dir = commonDir(dir, options.files);
  	} else {
  		dir = dir || process.cwd();
  	}
  
  	dir = pkgDir.sync(dir);
  
  	if (dir) {
  		dir = path.join(dir, 'node_modules', '.cache', name);
  
  		if (dir && options.create) {
  			makeDir.sync(dir);
  		}
  
  		if (options.thunk) {
  			return function () {
  				return path.join.apply(path, [dir].concat(Array.prototype.slice.call(arguments)));
  			};
  		}
  	}
  
  	return dir;
  };