Skip to content

Commit e021751

Browse files
committed
Upgrade dependencies
1 parent 138a52b commit e021751

32 files changed

+377
-367
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
### Bug Fixes
1616

1717
- Entry points under `node_modules` will no longer be ignored, #2151.
18+
- Added `package.json` to exports declaration.
1819

1920
### Thanks!
2021

package-lock.json

Lines changed: 324 additions & 320 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"main": "./dist/index.js",
77
"exports": {
88
".": "./dist/index.js",
9-
"./tsdoc.json": "./tsdoc.json"
9+
"./tsdoc.json": "./tsdoc.json",
10+
"./package.json": "./package.json"
1011
},
1112
"types": "./dist/index.d.ts",
1213
"bin": {
@@ -25,30 +26,29 @@
2526
},
2627
"dependencies": {
2728
"lunr": "^2.3.9",
28-
"marked": "^4.2.5",
29-
"minimatch": "^5.1.2",
30-
"shiki": "^0.12.1"
29+
"marked": "^4.2.12",
30+
"minimatch": "^6.1.6",
31+
"shiki": "^0.14.1"
3132
},
3233
"peerDependencies": {
3334
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x"
3435
},
3536
"devDependencies": {
3637
"@types/lunr": "^2.3.4",
3738
"@types/marked": "^4.0.8",
38-
"@types/minimatch": "5.1.2",
3939
"@types/mocha": "^10.0.1",
4040
"@types/node": "14",
41-
"@typescript-eslint/eslint-plugin": "^5.48.0",
42-
"@typescript-eslint/parser": "^5.48.0",
41+
"@typescript-eslint/eslint-plugin": "^5.51.0",
42+
"@typescript-eslint/parser": "^5.51.0",
4343
"@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#5a9486bc66f6e36988106685768396281f6cbc10",
4444
"c8": "^7.12.0",
45-
"esbuild": "^0.16.15",
46-
"eslint": "^8.31.0",
45+
"esbuild": "^0.17.7",
46+
"eslint": "^8.34.0",
4747
"mocha": "^10.2.0",
48-
"prettier": "2.8.2",
48+
"prettier": "2.8.4",
4949
"puppeteer": "^13.5.2",
5050
"ts-node": "^10.9.1",
51-
"typescript": "4.9.4"
51+
"typescript": "4.9.5"
5252
},
5353
"files": [
5454
"/bin",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ export {
7979
} from "./lib/serialization";
8080
export type { SerializeEventData } from "./lib/serialization";
8181

82-
import * as TypeScript from "typescript";
82+
import TypeScript from "typescript";
8383
export { TypeScript };

src/lib/application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as Path from "path";
2-
import * as ts from "typescript";
2+
import ts from "typescript";
33

44
import { Converter } from "./converter/index";
55
import { Renderer } from "./output/renderer";

src/lib/converter/comments/discovery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ts from "typescript";
1+
import ts from "typescript";
22
import { ReflectionKind } from "../../models";
33
import { assertNever, Logger } from "../../utils";
44
import { CommentStyle } from "../../utils/options/declaration";

src/lib/converter/comments/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ts from "typescript";
1+
import ts from "typescript";
22
import { Comment, ReflectionKind } from "../../models";
33
import { assertNever, Logger } from "../../utils";
44
import type { CommentStyle } from "../../utils/options/declaration";

src/lib/converter/comments/linkResolver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ts from "typescript";
1+
import ts from "typescript";
22
import {
33
Comment,
44
CommentDisplayPart,

src/lib/converter/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ok as assert } from "assert";
2-
import * as ts from "typescript";
2+
import ts from "typescript";
33

44
import {
55
Reflection,

src/lib/converter/convert-expression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ts from "typescript";
1+
import ts from "typescript";
22

33
/**
44
* Return the default value of the given node.

0 commit comments

Comments
 (0)