Skip to content

Commit 47c7564

Browse files
committed
docs: fix npm links
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent fe8409e commit 47c7564

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/interfaces/bugs-object.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Object containing the URL to the package's issue tracker and/or the email
88
* address to which issues should be reported.
99
*
10-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#bugs
10+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bugs
1111
*/
1212
interface BugsObject {
1313
/**

src/interfaces/funding-object.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { FundingType } from '#src/types'
88
/**
99
* Object containing information about how to support a package monetarily.
1010
*
11-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#funding
11+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#funding
1212
*/
1313
interface FundingObject {
1414
/**

src/types/bin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type DependencyMap from './dependency-map'
88
/**
99
* Executable files to install into `PATH`.
1010
*
11-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#bin
11+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bin
1212
* @see https://yarnpkg.com/configuration/manifest#bin
1313
*/
1414
type Bin = DependencyMap<string> | string

src/types/browser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type DependencyMap from './dependency-map'
99
* Hint to JavaScript bundlers or component tools when packaging modules for
1010
* client side use.
1111
*
12-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#browser
12+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#browser
1313
* @see https://yarnpkg.com/configuration/manifest#publishConfig.browser
1414
*/
1515
type Browser = DependencyMap<string | false> | string

src/types/cpu.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils'
88
/**
99
* CPU architectures a package runs on.
1010
*
11-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#cpu
11+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#cpu
1212
* @see https://yarnpkg.com/configuration/manifest
1313
*/
1414
type CPU = LiteralUnion<

src/types/engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { LiteralUnion } from '@flex-development/tutils'
88
/**
99
* Engines a package runs on.
1010
*
11-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#engines
11+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#engines
1212
*/
1313
type Engine = LiteralUnion<'node' | 'npm' | 'yarn', string>
1414

src/types/os.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils'
88
/**
99
* Operating system platforms a package runs on.
1010
*
11-
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#os
11+
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#os
1212
* @see https://yarnpkg.com/configuration/manifest#os
1313
*/
1414
type OS = LiteralUnion<

0 commit comments

Comments
 (0)