aef994de3a
pnpm refuses to install package into workspace unless the "--workspace-root" flag is present.
16 lines
460 B
Bash
Executable File
16 lines
460 B
Bash
Executable File
#!/bin/bash
|
|
set -exuo pipefail
|
|
|
|
./bootstrap
|
|
./configure
|
|
make
|
|
|
|
pnpm install --workspace-root typedoc
|
|
./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
|