Skip to content

Commit

Permalink
Merge branch 'master' into kriskowal-daemon-agent-handle-correspondence
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Mar 27, 2024
2 parents f623424 + 401dfa0 commit a37bb43
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ jobs:
- name: build API docs
run: yarn docs

# build the API docs in markdown for agoric/documentation repo to verify it works
- name: build API docs in markdown
run: yarn docs:markdown-for-agoric-documentation-repo

test:
name: test

Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"ts-api-utils": "~1.0.1",
"type-coverage": "^2.26.3",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "~5.4.3",
"typescript-eslint": "^7.3.1"
},
Expand All @@ -31,6 +32,7 @@
"cover": "lerna run cover",
"depcheck": "node scripts/check-mismatched-dependencies.js",
"docs": "typedoc",
"docs:markdown-for-agoric-documentation-repo": "typedoc --plugin typedoc-plugin-markdown --tsconfig tsconfig.build.json",
"update": "lernaupdate --dedupe",
"format": "yarn prettier --write .github packages",
"lint": "yarn prettier --check .github packages && lerna run lint",
Expand Down
2 changes: 1 addition & 1 deletion packages/patterns/src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ export {};
*
* @property {(subPatt: Pattern) => Pattern} eref
* Matches any Passable that is either matched by `subPatt` or is a promise object.
* Note that validation is immediate, so (unlike the TypeScript ERef<T>
* Note that validation is immediate, so (unlike the TypeScript `ERef<T>`
* type) `M.eref` matches a promise object whose fulfillment value is
* _not_ matched by `subPatt`.
* For describing a top-level parameter,
Expand Down
7 changes: 7 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8049,6 +8049,13 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==

typedoc-plugin-markdown@^3.17.1:
version "3.17.1"
resolved "https://registry.yarnpkg.com/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.17.1.tgz#c33f42363c185adf842f4699166015f7fe0ed02b"
integrity sha512-QzdU3fj0Kzw2XSdoL15ExLASt2WPqD7FbLeaqwT70+XjKyTshBnUlQA5nNREO1C2P8Uen0CDjsBLMsCQ+zd0lw==
dependencies:
handlebars "^4.7.7"

typedoc@^0.25.12:
version "0.25.12"
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.12.tgz#f73f0a8d3731d418cc604d4230f95a857799e27a"
Expand Down

0 comments on commit a37bb43

Please sign in to comment.