Skip to content

Commit c5e8e5c

Browse files
committedNov 4, 2022
Require Node.js 14 and move to ESM
1 parent 21ae944 commit c5e8e5c

File tree

7 files changed

+69
-89
lines changed

7 files changed

+69
-89
lines changed
 

‎.github/workflows/main.yml

+6-15
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,19 @@ on:
44
- pull_request
55
jobs:
66
test:
7-
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
8-
runs-on: ${{ matrix.os }}
7+
name: Node.js ${{ matrix.node-version }}
8+
runs-on: ubuntu-latest
99
strategy:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13+
- 18
14+
- 16
1315
- 14
14-
- 12
15-
- 10
16-
- 8
17-
os:
18-
- macos-latest
19-
- ubuntu-latest
20-
- windows-latest
2116
steps:
22-
- uses: actions/checkout@v2
23-
- uses: actions/setup-node@v1
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v3
2419
with:
2520
node-version: ${{ matrix.node-version }}
2621
- run: npm install
2722
- run: npm test
28-
- uses: codecov/codecov-action@v1
29-
if: matrix.os == 'ubuntu-latest' && matrix.node-version == 14
30-
with:
31-
fail_ci_if_error: true

‎.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
node_modules
22
yarn.lock
3-
.nyc_output
4-
coverage

‎index.js

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
'use strict';
2-
const path = require('path');
3-
const fs = require('fs');
4-
const commonDir = require('commondir');
5-
const pkgDir = require('pkg-dir');
6-
const makeDir = require('make-dir');
1+
import process from 'node:process';
2+
import path from 'node:path';
3+
import fs from 'node:fs';
4+
import commonPathPrefix from 'common-path-prefix';
5+
import {packageDirectorySync} from 'pkg-dir';
76

87
const {env, cwd} = process;
98

109
const isWritable = path => {
1110
try {
1211
fs.accessSync(path, fs.constants.W_OK);
1312
return true;
14-
} catch (_) {
13+
} catch {
1514
return false;
1615
}
1716
};
1817

1918
function useDirectory(directory, options) {
2019
if (options.create) {
21-
makeDir.sync(directory);
20+
fs.mkdirSync(directory, {recursive: true});
2221
}
2322

2423
if (options.thunk) {
@@ -32,36 +31,36 @@ function getNodeModuleDirectory(directory) {
3231
const nodeModules = path.join(directory, 'node_modules');
3332

3433
if (
35-
!isWritable(nodeModules) &&
36-
(fs.existsSync(nodeModules) || !isWritable(path.join(directory)))
34+
!isWritable(nodeModules)
35+
&& (fs.existsSync(nodeModules) || !isWritable(path.join(directory)))
3736
) {
3837
return;
3938
}
4039

4140
return nodeModules;
4241
}
4342

44-
module.exports = (options = {}) => {
43+
export default function findCacheDirectory(options = {}) {
4544
if (env.CACHE_DIR && !['true', 'false', '1', '0'].includes(env.CACHE_DIR)) {
4645
return useDirectory(path.join(env.CACHE_DIR, options.name), options);
4746
}
4847

4948
let {cwd: directory = cwd()} = options;
5049

5150
if (options.files) {
52-
directory = commonDir(directory, options.files);
51+
directory = commonPathPrefix(options.files.map(file => path.resolve(directory, file)));
5352
}
5453

55-
directory = pkgDir.sync(directory);
54+
directory = packageDirectorySync({cwd: directory});
5655

5756
if (!directory) {
5857
return;
5958
}
6059

6160
const nodeModules = getNodeModuleDirectory(directory);
6261
if (!nodeModules) {
63-
return undefined;
62+
return;
6463
}
6564

6665
return useDirectory(path.join(directory, 'node_modules', '.cache', options.name), options);
67-
};
66+
}

‎license

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

33
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4+
Copyright (c) James Talmage <james@talmage.io> (https://github.com/jamestalmage)
45

56
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:
67

‎package.json

+19-18
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,20 @@
33
"version": "3.3.2",
44
"description": "Finds the common standard cache directory",
55
"license": "MIT",
6-
"repository": "avajs/find-cache-dir",
7-
"funding": "https://github.com/avajs/find-cache-dir?sponsor=1",
6+
"repository": "sindresorhus/find-cache-dir",
7+
"funding": "https://github.com/sponsors/sindresorhus",
8+
"author": {
9+
"name": "Sindre Sorhus",
10+
"email": "sindresorhus@gmail.com",
11+
"url": "https://sindresorhus.com"
12+
},
13+
"type": "module",
14+
"exports": "./index.js",
815
"engines": {
9-
"node": ">=8"
16+
"node": ">=14.16"
1017
},
1118
"scripts": {
12-
"test": "xo && nyc ava"
19+
"test": "xo && ava"
1320
},
1421
"files": [
1522
"index.js"
@@ -23,22 +30,16 @@
2330
"search"
2431
],
2532
"dependencies": {
26-
"commondir": "^1.0.1",
27-
"make-dir": "^3.0.2",
28-
"pkg-dir": "^4.1.0"
33+
"common-path-prefix": "^3.0.0",
34+
"pkg-dir": "^7.0.0"
2935
},
3036
"devDependencies": {
31-
"ava": "^2.4.0",
32-
"coveralls": "^3.0.9",
33-
"del": "^4.0.0",
34-
"nyc": "^15.0.0",
35-
"tempy": "^0.4.0",
36-
"xo": "^0.25.3"
37+
"ava": "^5.0.1",
38+
"del": "^7.0.0",
39+
"tempy": "^3.0.0",
40+
"xo": "^0.52.4"
3741
},
38-
"nyc": {
39-
"reporter": [
40-
"lcov",
41-
"text"
42-
]
42+
"ava": {
43+
"workerThreads": false
4344
}
4445
}

‎readme.md

+6-20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# find-cache-dir [![Coverage Status](https://codecov.io/gh/avajs/find-cache-dir/branch/master/graph/badge.svg)](https://codecov.io/gh/avajs/find-cache-dir/branch/master)
1+
# find-cache-dir
22

33
> Finds the common standard cache directory
44
@@ -21,26 +21,24 @@ This module makes it easy to correctly locate the cache directory according to t
2121
rm -rf ./node_modules/.cache
2222
```
2323

24-
If you decide to adopt this pattern, please file a PR adding your name to the list of adopters below.
25-
2624
## Install
2725

28-
```
29-
$ npm install find-cache-dir
26+
```sh
27+
npm install find-cache-dir
3028
```
3129

3230
## Usage
3331

3432
```js
35-
const findCacheDir = require('find-cache-dir');
33+
import findCacheDirectory from 'find-cache-dir';
3634

37-
findCacheDir({name: 'unicorns'});
35+
findCacheDirectory({name: 'unicorns'});
3836
//=> '/user/path/node-modules/.cache/unicorns'
3937
```
4038

4139
## API
4240

43-
### findCacheDir(options?)
41+
### findCacheDirectory(options?)
4442

4543
Finds the cache directory using the supplied options. The algorithm checks for the `CACHE_DIR` environmental variable and uses it if it is not set to `true`, `false`, `1` or `0`. If one is not found, it 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.
4644

@@ -109,15 +107,3 @@ This is helpful for actually putting actual files in the cache!
109107
- [`babel-loader`](https://github.com/babel/babel-loader)
110108
- [`eslint-loader`](https://github.com/MoOx/eslint-loader)
111109
- [More…](https://www.npmjs.com/browse/depended/find-cache-dir)
112-
113-
---
114-
115-
<div align="center">
116-
<b>
117-
<a href="https://tidelift.com/subscription/pkg/npm-find_cache-dir?utm_source=npm-find-cache-dir&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
118-
</b>
119-
<br>
120-
<sub>
121-
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
122-
</sub>
123-
</div>

‎test.js

+23-19
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,61 @@
1-
import fs from 'fs';
2-
import path from 'path';
3-
import {serial as test} from 'ava';
4-
import del from 'del';
5-
import {directory as tempDirectory} from 'tempy';
6-
import findCacheDir from '.';
1+
import process from 'node:process';
2+
import fs from 'node:fs';
3+
import path from 'node:path';
4+
import {fileURLToPath} from 'node:url';
5+
import test from 'ava';
6+
import {deleteSync} from 'del';
7+
import {temporaryDirectory} from 'tempy';
8+
import findCacheDirectory from './index.js';
9+
10+
const __dirname = path.dirname(fileURLToPath(import.meta.url));
711

812
test('finds from a list of files', t => {
913
process.chdir(path.join(__dirname, '..'));
1014
const files = ['foo/bar', 'baz/quz'].map(file => path.join(__dirname, file));
11-
t.is(findCacheDir({files, name: 'blah'}), path.join(__dirname, 'node_modules', '.cache', 'blah'));
15+
t.is(findCacheDirectory({files, name: 'blah'}), path.join(__dirname, 'node_modules', '.cache', 'blah'));
1216
});
1317

1418
test('finds from process.cwd', t => {
1519
process.chdir(path.join(__dirname));
16-
t.is(findCacheDir({name: 'foo'}), path.join(__dirname, 'node_modules', '.cache', 'foo'));
20+
t.is(findCacheDirectory({name: 'foo'}), path.join(__dirname, 'node_modules', '.cache', 'foo'));
1721
});
1822

1923
test('finds from options.cwd', t => {
2024
process.chdir(path.join(__dirname, '..'));
21-
t.is(findCacheDir({cwd: __dirname, name: 'bar'}), path.join(__dirname, 'node_modules', '.cache', 'bar'));
25+
t.is(findCacheDirectory({cwd: __dirname, name: 'bar'}), path.join(__dirname, 'node_modules', '.cache', 'bar'));
2226
});
2327

2428
test('creates dir', t => {
2529
const directory = path.join(__dirname, 'node_modules', '.cache', 'created');
26-
del.sync(directory);
27-
findCacheDir({create: true, name: 'created', cwd: __dirname});
30+
deleteSync(directory);
31+
findCacheDirectory({create: true, name: 'created', cwd: __dirname});
2832
t.true(fs.existsSync(directory));
2933
});
3034

3135
test('thunk', t => {
3236
const directory = path.join(__dirname, 'node_modules', '.cache', 'thunked');
33-
del.sync(directory);
34-
const thunk = findCacheDir({thunk: true, name: 'thunked', cwd: __dirname});
37+
deleteSync(directory);
38+
const thunk = findCacheDirectory({thunk: true, name: 'thunked', cwd: __dirname});
3539
t.is(thunk('foo'), path.join(directory, 'foo'));
3640
t.is(thunk('bar'), path.join(directory, 'bar'));
3741
});
3842

3943
test('returns undefined if it can\'t find package.json', t => {
4044
process.chdir(path.join(__dirname, '..'));
41-
t.is(findCacheDir({name: 'foo'}), undefined);
45+
t.is(findCacheDirectory({name: 'foo'}), undefined);
4246
});
4347

4448
test('supports CACHE_DIR environment variable', t => {
45-
const newCacheDirectory = tempDirectory();
49+
const newCacheDirectory = temporaryDirectory();
4650
const finalDirectory = path.join(newCacheDirectory, 'some-package');
4751
process.env.CACHE_DIR = newCacheDirectory;
4852

49-
t.is(findCacheDir({name: 'some-package'}), finalDirectory);
53+
t.is(findCacheDirectory({name: 'some-package'}), finalDirectory);
5054

51-
findCacheDir({name: 'some-package', create: true});
55+
findCacheDirectory({name: 'some-package', create: true});
5256
t.true(fs.existsSync(finalDirectory));
5357

54-
const thunk = findCacheDir({name: 'some-package', thunk: true});
58+
const thunk = findCacheDirectory({name: 'some-package', thunk: true});
5559
t.is(thunk('foo'), path.join(finalDirectory, 'foo'));
5660
t.is(thunk('bar'), path.join(finalDirectory, 'bar'));
5761

@@ -61,5 +65,5 @@ test('supports CACHE_DIR environment variable', t => {
6165
test('ignores `false` for CACHE_DIR environment variable', t => {
6266
process.env.CACHE_DIR = 'false';
6367

64-
t.not(findCacheDir(), path.resolve(__dirname, 'false', 'find-cache-dir'));
68+
t.not(findCacheDirectory(), path.resolve(__dirname, 'false', 'find-cache-dir'));
6569
});

0 commit comments

Comments
 (0)
Please sign in to comment.