Commit e0e9a88 1 parent deea964 commit e0e9a88 Copy full SHA for e0e9a88
File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 45
45
git config user.name "${GITHUB_ACTOR}"
46
46
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
47
47
48
- - name : Build
48
+ - name : Build package
49
49
run : pnpm build
50
50
51
+ - name : Build docs
52
+ run : pnpm docs:build
53
+
51
54
- name : Publish package
52
55
run : pnpm release --increment ${{ inputs.increment }}
53
56
env :
Original file line number Diff line number Diff line change 1
1
<div align =" center " >
2
2
<h1 >Puffer SDK</h1 >
3
3
4
- <img alt =" GitHub license " src =" https://img.shields.io/github/license/pufferfinance/puffer-sdk?color=limegreen " >
5
- <img alt =" Downloads npm " src =" https://img.shields.io/npm/dm/@pufferfinance/puffer-sdk?color=limegreen " >
6
- <img alt =" Version npm " src =" https://img.shields.io/npm/v/@pufferfinance/puffer-sdk?label=version " >
7
- <!-- ADD COVERAGE -->
4
+ <img alt =" build " src =" https://github.com/pufferfinance/puffer-sdk/actions/workflows/build-and-test.yml/badge.svg?branch=main " />
5
+ <img alt =" license " src =" https://img.shields.io/github/license/pufferfinance/puffer-sdk?color=limegreen " />
6
+ <img alt =" npm downloads " src =" https://img.shields.io/npm/dm/@pufferfinance/puffer-sdk?color=limegreen&logo=npm " />
7
+ <img alt =" npm version " src =" https://img.shields.io/npm/v/@pufferfinance/puffer-sdk?label=version&logo=npm " />
8
+ <!-- TODO: ADD COVERAGE BADGE -->
8
9
9
10
<p >SDK to seamlessly interact with puffer smart contracts<p >
10
11
</div >
Original file line number Diff line number Diff line change @@ -144,7 +144,8 @@ const config: Config = {
144
144
// https://typedoc-plugin-markdown.org/plugins/docusaurus/options
145
145
// https://typedoc-plugin-markdown.org/docs/options
146
146
{
147
- entryPoints : '../lib/api' ,
147
+ // Consider all files in subdirectories of the `lib` directory.
148
+ entryPoints : '../lib/*/**' ,
148
149
exclude : '**/*+(test|spec|index).ts' ,
149
150
entryPointStrategy : 'expand' ,
150
151
tsconfig : '../tsconfig.json' ,
You can’t perform that action at this time.
0 commit comments