Skip to content

Commit

Permalink
docs: fix npm links
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Dec 1, 2022
1 parent fe8409e commit 47c7564
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/interfaces/bugs-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Object containing the URL to the package's issue tracker and/or the email
* address to which issues should be reported.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#bugs
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bugs
*/
interface BugsObject {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/funding-object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { FundingType } from '#src/types'
/**
* Object containing information about how to support a package monetarily.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#funding
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#funding
*/
interface FundingObject {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/types/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type DependencyMap from './dependency-map'
/**
* Executable files to install into `PATH`.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#bin
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bin
* @see https://yarnpkg.com/configuration/manifest#bin
*/
type Bin = DependencyMap<string> | string
Expand Down
2 changes: 1 addition & 1 deletion src/types/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type DependencyMap from './dependency-map'
* Hint to JavaScript bundlers or component tools when packaging modules for
* client side use.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#browser
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#browser
* @see https://yarnpkg.com/configuration/manifest#publishConfig.browser
*/
type Browser = DependencyMap<string | false> | string
Expand Down
2 changes: 1 addition & 1 deletion src/types/cpu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils'
/**
* CPU architectures a package runs on.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#cpu
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#cpu
* @see https://yarnpkg.com/configuration/manifest
*/
type CPU = LiteralUnion<
Expand Down
2 changes: 1 addition & 1 deletion src/types/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { LiteralUnion } from '@flex-development/tutils'
/**
* Engines a package runs on.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#engines
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#engines
*/
type Engine = LiteralUnion<'node' | 'npm' | 'yarn', string>

Expand Down
2 changes: 1 addition & 1 deletion src/types/os.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils'
/**
* Operating system platforms a package runs on.
*
* @see https://docs.npmjs.com/cli/configuring-npm/package-json#os
* @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#os
* @see https://yarnpkg.com/configuration/manifest#os
*/
type OS = LiteralUnion<
Expand Down

0 comments on commit 47c7564

Please sign in to comment.