Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Migrate server to ESM | Chocobozzz | 2023-08-11 | 1 | -298/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sorry for the very big commit that may lead to git log issues and merge conflicts, but it's a major step forward: * Server can be faster at startup because imports() are async and we can easily lazy import big modules * Angular doesn't seem to support ES import (with .js extension), so we had to correctly organize peertube into a monorepo: * Use yarn workspace feature * Use typescript reference projects for dependencies * Shared projects have been moved into "packages", each one is now a node module (with a dedicated package.json/tsconfig.json) * server/tools have been moved into apps/ and is now a dedicated app bundled and published on NPM so users don't have to build peertube cli tools manually * server/tests have been moved into packages/ so we don't compile them every time we want to run the server * Use isolatedModule option: * Had to move from const enum to const (https://www.typescriptlang.org/docs/handbook/enums.html#objects-vs-enums) * Had to explictely specify "type" imports when used in decorators * Prefer tsx (that uses esbuild under the hood) instead of ts-node to load typescript files (tests with mocha or scripts): * To reduce test complexity as esbuild doesn't support decorator metadata, we only test server files that do not import server models * We still build tests files into js files for a faster CI * Remove unmaintained peertube CLI import script * Removed some barrels to speed up execution (less imports) | ||||
* | Fix CI using 127.0.0.1 for tests | Chocobozzz | 2022-12-12 | 1 | -9/+9 |
| | |||||
* | We don't need to import mocha | Chocobozzz | 2022-08-17 | 1 | -1/+0 |
| | |||||
* | Move test functions outside extra-utils | Chocobozzz | 2021-12-17 | 1 | -3/+1 |
| | |||||
* | shared/ typescript types dir server-commands | Chocobozzz | 2021-12-17 | 1 | -1/+1 |
| | |||||
* | Refactor requests | Chocobozzz | 2021-07-20 | 1 | -36/+32 |
| | |||||
* | Use an object to represent a server | Chocobozzz | 2021-07-20 | 1 | -4/+4 |
| | |||||
* | Shorter server command names | Chocobozzz | 2021-07-20 | 1 | -2/+2 |
| | |||||
* | Introduce user command | Chocobozzz | 2021-07-20 | 1 | -2/+1 |
| | |||||
* | Introduce login command | Chocobozzz | 2021-07-20 | 1 | -3/+2 |
| | |||||
* | replace numbers with typed http status codes (#3409) | Rigel Kent | 2020-12-07 | 1 | -25/+26 |
| | |||||
* | Move to eslintcontain | Chocobozzz | 2020-02-03 | 1 | -1/+1 |
| | |||||
* | Use test wrapper exit function | Chocobozzz | 2019-04-24 | 1 | -14/+13 |
| | |||||
* | Cleanup tests | Chocobozzz | 2019-04-24 | 1 | -10/+3 |
| | |||||
* | Shared utils -> extra-utils | Chocobozzz | 2019-04-24 | 1 | -3/+3 |
| | | | | Because they need dev dependencies | ||||
* | Add user adminFlags | Chocobozzz | 2019-04-15 | 1 | -1/+1 |
| | |||||
* | findById -> findByPk | Chocobozzz | 2019-02-21 | 1 | -1/+1 |
| | |||||
* | Merge branch 'develop' of https://github.com/Chocobozzz/PeerTube into ↵ | buoyantair | 2018-11-18 | 1 | -0/+6 |
|\ | | | | | | | move-utils-to-shared | ||||
| * | Do not host remote AP objects | Chocobozzz | 2018-11-16 | 1 | -0/+5 |
| | | |||||
* | | Move utils to /shared | buoyantair | 2018-10-29 | 1 | -2/+6 |
|/ | | | | | | | Move utils used by /server/tools/* & /server/tests/**/* into /shared folder. Issue: #1336 | ||||
* | Add ability to search video channels | Chocobozzz | 2018-08-27 | 1 | -0/+40 |
| | |||||
* | Add get subscription endpoint | Chocobozzz | 2018-08-27 | 1 | -4/+55 |
| | |||||
* | Add ability to set a name to a channel | Chocobozzz | 2018-08-27 | 1 | -13/+6 |
| | |||||
* | Add subscriptions endpoints to REST API | Chocobozzz | 2018-08-27 | 1 | -0/+220 |