Skip to content

Commit bc3534c

Browse files
authored
Actually add Typedoc as a dependency (#8)
1 parent f015bfc commit bc3534c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ dist
44
node_modules
55
npm-debug.log*
66
package-lock.json
7+
/docs
8+
/spec
79

810
# Editors
911
.idea

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.1.1
2+
3+
* No user-visible changes.
4+
15
## 1.1.0
26

37
* Add `SyncMessagePort.receiveMessageIfAvailable()`.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sync-message-port",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "A Node.js communication port that can pass messages synchronously between workers",
55
"repository": "sass/sync-message-port",
66
"author": "Google Inc.",
@@ -23,6 +23,7 @@
2323
"check:tsc": "tsc --noEmit",
2424
"clean": "gts clean",
2525
"compile": "tsc -p tsconfig.build.json",
26+
"doc": "typedoc lib/index.ts",
2627
"fix": "gts fix",
2728
"test": "jest"
2829
},
@@ -35,6 +36,7 @@
3536
"npm-run-all": "^4.1.5",
3637
"ts-jest": "^29.0.5",
3738
"ts-node": "^10.2.1",
39+
"typedoc": "^0.26.11",
3840
"typescript": "^5.0.2"
3941
}
4042
}

0 commit comments

Comments
 (0)