]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - support/doc/development/lib.md
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / support / doc / development / lib.md
... / ...
CommitLineData
1# Lib development documentation
2
3## @peertube/embed-api
4
5### Build & Publish
6
7```
8cd client/src/standalone/player/
9npm run build
10npm publish --access=public
11```
12
13## @peertube/peertube-types
14
15Typescript definition files generation is controlled by the various `tsconfig.types.json` files.
16
17The complete types package is generated via:
18
19```
20npm run generate-types-package 4.x.x
21cd packages/types/dist
22npm publish --access=public
23```
24
25> See [scripts/generate-types-package.ts](scripts/generate-types-package.ts) for details.