2023-06-07 17:53:49 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -exuo pipefail
|
|
|
|
|
|
|
|
./bootstrap
|
|
|
|
./configure
|
|
|
|
make
|
|
|
|
|
2023-07-17 18:37:10 +02:00
|
|
|
pnpm install --workspace-root typedoc
|
2023-06-07 17:53:49 +02:00
|
|
|
./node_modules/typedoc/bin/typedoc \
|
|
|
|
--out dist/typedoc \
|
|
|
|
--tsconfig tsconfig.build.json \
|
|
|
|
packages/taler-util/src/index.ts \
|
|
|
|
packages/taler-wallet-cli/src/index.ts \
|
|
|
|
packages/taler-wallet-android/src/index.ts \
|
|
|
|
packages/taler-wallet-core/src/index.ts
|