Skip to content

Commit

Permalink
Bump version to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Mar 10, 2023
1 parent b858253 commit 76f2a25
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 24 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ Adds support for linking references to global types like `HTMLElement`, `WebAsse

This is probably missing links! If you set `--logLevel Verbose`, it will print out when failing to resolve a symbol to a page on MDN. Pull requests to fix failed resolution are welcome!

Supports TypeDoc 0.22.x.
Supports TypeDoc 0.23.x and 0.24.x

## Changelog

### v3.0.0 (2023-03-09)

- Add support for TypeDoc 0.24 (@ocavue)
- Drop support for TypeDoc 0.22

### v2.0.2 (2022-12-22)

- Add missing `AsyncGenerator` and `AsyncGeneratorFunction` pages (@achingbrain)
Expand Down
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "typedoc-plugin-mdn-links",
"version": "2.0.2",
"version": "3.0.0",
"main": "dist/index.js",
"license": "MIT",
"devDependencies": {
"prettier": "^2.7.1",
"prettier": "^2.8.4",
"typedoc": "^0.23.26",
"typescript": "^4.7.4"
"typescript": "^4.9.5"
},
"keywords": [
"typedocplugin"
"typedoc-plugin"
],
"files": [
"dist"
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"module": "Node16",
"strict": true,
"esModuleInterop": true,
"isolatedModules": true,
"outDir": "dist"
},
Expand Down

0 comments on commit 76f2a25

Please sign in to comment.