Skip to content

Commit

Permalink
fix build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos committed Aug 23, 2024
1 parent 569559a commit 0e39f77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version: 20
cache: yarn
- run: yarn install
- run: npx typedoc src/index.ts
- run: yarn build:docs
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"lint": "eslint '{src,test}/**/*.ts'",
"lint:fix": "eslint '{src,test}/**/*.ts' --fix",
"build": "tsc --project tsconfig.build.json",
"build:docs": "npx -y typedoc src/index.ts",
"test": "jest --config=./test/jest.config.js",
"test:unit": "jest --config=./test/jest.config.js test/unit",
"test:local": "jest --config=./test/jest.config.js --runInBand --maxConcurrency=1 test/local",
Expand Down
2 changes: 1 addition & 1 deletion test/local/wallet.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
prepareAccount,
getPreparedWallet,
} from './fixtures';
import { ReceiptError } from '../../lib/errors';
import { ReceiptError } from '../../src/errors';

jest.setTimeout(600000);

Expand Down

0 comments on commit 0e39f77

Please sign in to comment.