Skip to content

Commit 7cf8b3c

Browse files
committed
Upgrade deps
1 parent cc93e09 commit 7cf8b3c

File tree

8 files changed

+355
-355
lines changed

8 files changed

+355
-355
lines changed

Diff for: package-lock.json

+339-339
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
},
2626
"dependencies": {
2727
"lunr": "^2.3.9",
28-
"marked": "^4.2.4",
29-
"minimatch": "^5.1.1",
30-
"shiki": "^0.11.1"
28+
"marked": "^4.2.5",
29+
"minimatch": "^5.1.2",
30+
"shiki": "^0.12.1"
3131
},
3232
"peerDependencies": {
3333
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x"
@@ -36,16 +36,16 @@
3636
"@types/lunr": "^2.3.4",
3737
"@types/marked": "^4.0.8",
3838
"@types/minimatch": "5.1.2",
39-
"@types/mocha": "^9.1.1",
39+
"@types/mocha": "^10.0.1",
4040
"@types/node": "14",
41-
"@typescript-eslint/eslint-plugin": "^5.46.1",
42-
"@typescript-eslint/parser": "^5.46.1",
41+
"@typescript-eslint/eslint-plugin": "^5.48.0",
42+
"@typescript-eslint/parser": "^5.48.0",
4343
"@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#5a9486bc66f6e36988106685768396281f6cbc10",
4444
"c8": "^7.12.0",
45-
"esbuild": "^0.16.8",
46-
"eslint": "^8.30.0",
45+
"esbuild": "^0.16.15",
46+
"eslint": "^8.31.0",
4747
"mocha": "^10.2.0",
48-
"prettier": "2.8.1",
48+
"prettier": "2.8.2",
4949
"puppeteer": "^13.5.2",
5050
"ts-node": "^10.9.1",
5151
"typescript": "4.9.4"

Diff for: src/lib/converter/comments/declarationReference.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const MeaningKeywords = [
2828
"getter",
2929
"setter",
3030
] as const;
31-
export type MeaningKeyword = typeof MeaningKeywords[number];
31+
export type MeaningKeyword = (typeof MeaningKeywords)[number];
3232

3333
export interface DeclarationReference {
3434
resolutionStart: "global" | "local";

Diff for: src/lib/models/reflections/type-parameter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const VarianceModifier = {
1414
inOut: "in out",
1515
} as const;
1616
export type VarianceModifier =
17-
typeof VarianceModifier[keyof typeof VarianceModifier];
17+
(typeof VarianceModifier)[keyof typeof VarianceModifier];
1818

1919
export class TypeParameterReflection extends Reflection {
2020
override parent?: DeclarationReflection;

Diff for: src/lib/models/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ export const TypeContext = {
205205
tupleElement: "tupleElement", // [here]
206206
unionElement: "unionElement", // here | 1
207207
} as const;
208-
export type TypeContext = typeof TypeContext[keyof typeof TypeContext];
208+
export type TypeContext = (typeof TypeContext)[keyof typeof TypeContext];
209209

210210
/**
211211
* Represents an array type.

Diff for: src/lib/utils/entry-point.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const EntryPointStrategy = {
3939
} as const;
4040

4141
export type EntryPointStrategy =
42-
typeof EntryPointStrategy[keyof typeof EntryPointStrategy];
42+
(typeof EntryPointStrategy)[keyof typeof EntryPointStrategy];
4343

4444
export interface DocumentationEntryPoint {
4545
displayName: string;

Diff for: src/lib/utils/options/declaration.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const EmitStrategy = {
1212
none: "none", // Emit nothing, just convert and run validation
1313
} as const;
1414
/** @hidden */
15-
export type EmitStrategy = typeof EmitStrategy[keyof typeof EmitStrategy];
15+
export type EmitStrategy = (typeof EmitStrategy)[keyof typeof EmitStrategy];
1616

1717
/**
1818
* Determines how TypeDoc searches for comments.
@@ -24,7 +24,7 @@ export const CommentStyle = {
2424
Line: "line",
2525
All: "all",
2626
} as const;
27-
export type CommentStyle = typeof CommentStyle[keyof typeof CommentStyle];
27+
export type CommentStyle = (typeof CommentStyle)[keyof typeof CommentStyle];
2828

2929
/**
3030
* An interface describing all TypeDoc specific options. Generated from a

Diff for: src/lib/utils/sort.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const SORT_STRATEGIES = [
2020
"kind",
2121
] as const;
2222

23-
export type SortStrategy = typeof SORT_STRATEGIES[number];
23+
export type SortStrategy = (typeof SORT_STRATEGIES)[number];
2424

2525
const defaultKindSortOrder = [
2626
ReflectionKind.Reference,

0 commit comments

Comments
 (0)