Skip to content

Commit 8f870da

Browse files
committedOct 13, 2021
Rename readPackageUpAsync to readPackageUp
1 parent c4f8985 commit 8f870da

File tree

7 files changed

+46
-47
lines changed

7 files changed

+46
-47
lines changed
 

‎.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13-
- 14
14-
- 12
13+
- 16
1514
steps:
1615
- uses: actions/checkout@v2
17-
- uses: actions/setup-node@v1
16+
- uses: actions/setup-node@v2
1817
with:
1918
node-version: ${{ matrix.node-version }}
2019
- run: npm install

‎index.d.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {Except} from 'type-fest';
2-
import {readPackageAsync, readPackageSync, Options as ReadPackageOptions, NormalizeOptions as ReadPackageNormalizeOptions, PackageJson, NormalizedPackageJson} from 'read-pkg';
2+
import {readPackage, readPackageSync, Options as ReadPackageOptions, NormalizeOptions as ReadPackageNormalizeOptions, PackageJson, NormalizedPackageJson} from 'read-pkg';
33

44
export type Options = {
55
/**
6-
Directory to start looking for a package.json file.
6+
The directory to start looking for a package.json file.
77
88
@default process.cwd()
99
*/
@@ -12,7 +12,7 @@ export type Options = {
1212

1313
export type NormalizeOptions = {
1414
/**
15-
Directory to start looking for a package.json file.
15+
The directory to start looking for a package.json file.
1616
1717
@default process.cwd()
1818
*/
@@ -31,17 +31,17 @@ export interface NormalizedReadResult {
3131

3232
export {
3333
PackageJson,
34-
NormalizedPackageJson
34+
NormalizedPackageJson,
3535
};
3636

3737
/**
3838
Read the closest `package.json` file.
3939
4040
@example
4141
```
42-
import {readPackageUpAsync} from 'read-pkg-up';
42+
import {readPackageUp} from 'read-pkg-up';
4343
44-
console.log(await readPackageUpAsync());
44+
console.log(await readPackageUp());
4545
// {
4646
// packageJson: {
4747
// name: 'awesome-package',
@@ -52,8 +52,8 @@ console.log(await readPackageUpAsync());
5252
// }
5353
```
5454
*/
55-
export function readPackageUpAsync(options?: NormalizeOptions): Promise<NormalizedReadResult | undefined>;
56-
export function readPackageUpAsync(options: Options): Promise<ReadResult | undefined>;
55+
export function readPackageUp(options?: NormalizeOptions): Promise<NormalizedReadResult | undefined>;
56+
export function readPackageUp(options: Options): Promise<ReadResult | undefined>;
5757

5858
/**
5959
Synchronously read the closest `package.json` file.

‎index.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
import path from 'path';
2-
import findUp from 'find-up';
3-
import {readPackageAsync, readPackageSync} from 'read-pkg';
1+
import path from 'node:path';
2+
import {findUp, findUpSync} from 'find-up';
3+
import {readPackage, readPackageSync} from 'read-pkg';
44

5-
export async function readPackageUpAsync(options) {
5+
export async function readPackageUp(options) {
66
const filePath = await findUp('package.json', options);
77
if (!filePath) {
88
return;
99
}
1010

1111
return {
12-
packageJson: await readPackageAsync({...options, cwd: path.dirname(filePath)}),
13-
path: filePath
12+
packageJson: await readPackage({...options, cwd: path.dirname(filePath)}),
13+
path: filePath,
1414
};
1515
}
1616

1717
export function readPackageUpSync(options) {
18-
const filePath = findUp.sync('package.json', options);
18+
const filePath = findUpSync('package.json', options);
1919
if (!filePath) {
2020
return;
2121
}
2222

2323
return {
2424
packageJson: readPackageSync({...options, cwd: path.dirname(filePath)}),
25-
path: filePath
25+
path: filePath,
2626
};
2727
}

‎index.test-d.ts

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
import {expectType, expectError} from 'tsd';
2-
import {readPackageUpAsync, readPackageUpSync, ReadResult, NormalizedReadResult} from './index.js';
2+
import {readPackageUp, readPackageUpSync, ReadResult, NormalizedReadResult} from './index.js';
33

4-
expectType<Promise<NormalizedReadResult | undefined>>(readPackageUpAsync());
4+
expectType<Promise<NormalizedReadResult | undefined>>(readPackageUp());
55
expectType<Promise<NormalizedReadResult | undefined>>(
6-
readPackageUpAsync({cwd: '.'})
6+
readPackageUp({cwd: '.'}),
77
);
88
expectType<Promise<NormalizedReadResult | undefined>>(
9-
readPackageUpAsync({normalize: true})
9+
readPackageUp({normalize: true}),
1010
);
1111
expectType<Promise<NormalizedReadResult | undefined>>(
12-
readPackageUpAsync({cwd: '.', normalize: true})
12+
readPackageUp({cwd: '.', normalize: true}),
1313
);
1414
expectType<Promise<ReadResult | undefined>>(
15-
readPackageUpAsync({normalize: false})
15+
readPackageUp({normalize: false}),
1616
);
1717
expectError<Promise<NormalizedReadResult | undefined>>(
18-
readPackageUpAsync({normalize: false})
18+
readPackageUp({normalize: false}),
1919
);
2020

2121
expectType<NormalizedReadResult | undefined>(readPackageUpSync());
2222
expectType<NormalizedReadResult | undefined>(
23-
readPackageUpSync({cwd: '.'})
23+
readPackageUpSync({cwd: '.'}),
2424
);
2525
expectType<NormalizedReadResult | undefined>(
26-
readPackageUpSync({normalize: true})
26+
readPackageUpSync({normalize: true}),
2727
);
2828
expectType<NormalizedReadResult | undefined>(
29-
readPackageUpSync({cwd: '.', normalize: true})
29+
readPackageUpSync({cwd: '.', normalize: true}),
3030
);
3131
expectType<ReadResult | undefined>(
32-
readPackageUpSync({normalize: false})
32+
readPackageUpSync({normalize: false}),
3333
);
3434
expectError<NormalizedReadResult | undefined>(
35-
readPackageUpSync({normalize: false})
35+
readPackageUpSync({normalize: false}),
3636
);

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "module",
1414
"exports": "./index.js",
1515
"engines": {
16-
"node": ">=12"
16+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1717
},
1818
"scripts": {
1919
"test": "xo && ava && tsd"
@@ -49,13 +49,13 @@
4949
"path"
5050
],
5151
"dependencies": {
52-
"find-up": "^5.0.0",
53-
"read-pkg": "^6.0.0",
54-
"type-fest": "^1.0.1"
52+
"find-up": "^6.2.0",
53+
"read-pkg": "^7.0.0",
54+
"type-fest": "^2.5.0"
5555
},
5656
"devDependencies": {
5757
"ava": "^3.15.0",
58-
"tsd": "^0.14.0",
59-
"xo": "^0.38.2"
58+
"tsd": "^0.18.0",
59+
"xo": "^0.45.0"
6060
}
6161
}

‎readme.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010

1111
## Install
1212

13-
```
14-
$ npm install read-pkg-up
13+
```sh
14+
npm install read-pkg-up
1515
```
1616

1717
## Usage
1818

1919
```js
20-
import {readPackageUpAsync} from 'read-pkg-up';
20+
import {readPackageUp} from 'read-pkg-up';
2121

22-
console.log(await readPackageUpAsync());
22+
console.log(await readPackageUp());
2323
/*
2424
{
2525
packageJson: {
@@ -34,7 +34,7 @@ console.log(await readPackageUpAsync());
3434

3535
## API
3636

37-
### readPackageUpAsync(options?)
37+
### readPackageUp(options?)
3838

3939
Returns a `Promise<object>` or `Promise<undefined>` if no `package.json` was found.
4040

@@ -51,7 +51,7 @@ Type: `object`
5151
Type: `string`\
5252
Default: `process.cwd()`
5353

54-
Directory to start looking for a package.json file.
54+
The directory to start looking for a package.json file.
5555

5656
##### normalize
5757

‎test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
import path from 'path';
1+
import path from 'node:path';
22
import test from 'ava';
3-
import {readPackageUpAsync, readPackageUpSync} from './index.js';
3+
import {readPackageUp, readPackageUpSync} from './index.js';
44

55
const cwd = 'fixture';
66
const packagePath = path.resolve('.', 'package.json');
77

88
test('async', async t => {
9-
const result = await readPackageUpAsync({cwd});
9+
const result = await readPackageUp({cwd});
1010
t.is(result.packageJson.name, 'read-pkg-up');
1111
t.is(result.path, packagePath);
1212

13-
t.is(await readPackageUpAsync({cwd: '/'}), undefined);
13+
t.is(await readPackageUp({cwd: '/'}), undefined);
1414
});
1515

1616
test('sync', t => {

0 commit comments

Comments
 (0)
Please sign in to comment.