Skip to content

Commit 1e22fad

Browse files
committedNov 4, 2023
Rename package from read-pkg-up to read-package-up
1 parent 935a546 commit 1e22fad

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed
 

‎index.d.ts

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
import {type Except} from 'type-fest';
2-
import {readPackage, readPackageSync, type Options as ReadPackageOptions, type NormalizeOptions as ReadPackageNormalizeOptions, type PackageJson, type NormalizedPackageJson} from 'read-pkg';
2+
import {
3+
readPackage,
4+
readPackageSync,
5+
type Options as ReadPackageOptions,
6+
type NormalizeOptions as ReadPackageNormalizeOptions,
7+
type PackageJson,
8+
type NormalizedPackageJson,
9+
} from 'read-pkg';
310

411
export type Options = {
512
/**
@@ -34,7 +41,7 @@ Read the closest `package.json` file.
3441
3542
@example
3643
```
37-
import {readPackageUp} from 'read-pkg-up';
44+
import {readPackageUp} from 'read-package-up';
3845
3946
console.log(await readPackageUp());
4047
// {
@@ -55,7 +62,7 @@ Synchronously read the closest `package.json` file.
5562
5663
@example
5764
```
58-
import {readPackageUpSync} from 'read-pkg-up';
65+
import {readPackageUpSync} from 'read-package-up';
5966
6067
console.log(readPackageUpSync());
6168
// {

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "read-pkg-up",
2+
"name": "read-package-up",
33
"version": "10.1.0",
44
"description": "Read the closest package.json file",
55
"license": "MIT",
6-
"repository": "sindresorhus/read-pkg-up",
6+
"repository": "sindresorhus/read-package-up",
77
"funding": "https://github.com/sponsors/sindresorhus",
88
"author": {
99
"name": "Sindre Sorhus",

‎readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# read-pkg-up
1+
# read-package-up
22

33
> Read the closest package.json file
44
@@ -11,13 +11,13 @@
1111
## Install
1212

1313
```sh
14-
npm install read-pkg-up
14+
npm install read-package-up
1515
```
1616

1717
## Usage
1818

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

2222
console.log(await readPackageUp());
2323
/*
@@ -63,6 +63,6 @@ Default: `true`
6363
## Related
6464

6565
- [read-pkg](https://github.com/sindresorhus/read-pkg) - Read a package.json file
66-
- [pkg-up](https://github.com/sindresorhus/pkg-up) - Find the closest package.json file
66+
- [package-up](https://github.com/sindresorhus/package-up) - Find the closest package.json file
6767
- [find-up](https://github.com/sindresorhus/find-up) - Find a file by walking up parent directories
6868
- [pkg-conf](https://github.com/sindresorhus/pkg-conf) - Get namespaced config from the closest package.json

‎test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const packagePath = path.resolve('.', 'package.json');
77

88
test('async', async t => {
99
const result = await readPackageUp({cwd});
10-
t.is(result.packageJson.name, 'read-pkg-up');
10+
t.is(result.packageJson.name, 'read-package-up');
1111
t.is(result.path, packagePath);
1212
t.deepEqual(
1313
await readPackageUp({cwd: new URL(cwd, import.meta.url)}),
@@ -19,7 +19,7 @@ test('async', async t => {
1919

2020
test('sync', t => {
2121
const result = readPackageUpSync({cwd});
22-
t.is(result.packageJson.name, 'read-pkg-up');
22+
t.is(result.packageJson.name, 'read-package-up');
2323
t.is(result.path, packagePath);
2424
t.deepEqual(
2525
readPackageUpSync({cwd: new URL(cwd, import.meta.url)}),

0 commit comments

Comments
 (0)
Please sign in to comment.