Skip to content

Commit

Permalink
Actually add Typedoc as a dependency (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 authored Nov 4, 2024
1 parent f015bfc commit bc3534c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
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
4 changes: 3 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 @@ -35,6 +36,7 @@
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.2.1",
"typedoc": "^0.26.11",
"typescript": "^5.0.2"
}
}

0 comments on commit bc3534c

Please sign in to comment.