ニジカ投稿局 https://tv.nizika.tv
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. # Lib development documentation
  2. ## @peertube/embed-api
  3. ### Build & Publish
  4. ```
  5. cd client/src/standalone/embed-player-api/
  6. npm run build
  7. npm publish --access=public
  8. ```
  9. ## @peertube/peertube-types
  10. Typescript definition files generation is controlled by the various `tsconfig.types.json` files.
  11. The complete types package is generated via:
  12. ```
  13. npm run generate-types-package 4.x.x
  14. cd packages/types-generator/dist
  15. npm publish --access=public
  16. ```
  17. > See [scripts/generate-types-package.ts](scripts/generate-types-package.ts) for details.