Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actually add Typedoc as a dependency #8

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ dist
node_modules
npm-debug.log*
package-lock.json
/docs
/spec

# Editors
.idea
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.1

* No user-visible changes.

## 1.1.0

* Add `SyncMessagePort.receiveMessageIfAvailable()`.
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sync-message-port",
"version": "1.1.0",
"version": "1.1.1",
"description": "A Node.js communication port that can pass messages synchronously between workers",
"repository": "sass/sync-message-port",
"author": "Google Inc.",
Expand All @@ -23,6 +23,7 @@
"check:tsc": "tsc --noEmit",
"clean": "gts clean",
"compile": "tsc -p tsconfig.build.json",
"doc": "typedoc lib/index.ts",
"fix": "gts fix",
"test": "jest"
},
Expand All @@ -36,5 +37,8 @@
"ts-jest": "^29.0.5",
"ts-node": "^10.2.1",
"typescript": "^5.0.2"
},
"dependencies": {
"typedoc": "^0.26.11"
nex3 marked this conversation as resolved.
Show resolved Hide resolved
}
}
Loading