1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Switch to npm

This commit is contained in:
Fernando Fernández 2021-03-02 00:28:44 +01:00
parent 09856cc8c1
commit 6efef9680d
19 changed files with 14221 additions and 9296 deletions

View file

@ -42,7 +42,7 @@ Jellyfin Web is the frontend used for most of the clients available for end user
### Dependencies
- [Node.js](https://nodejs.org/en/download)
- [Yarn 1.22.5](https://classic.yarnpkg.com/en/docs/install)
- npm (included in Node.js)
### Getting Started
@ -56,17 +56,17 @@ Jellyfin Web is the frontend used for most of the clients available for end user
2. Install build dependencies in the project directory.
```sh
yarn install
npm install
```
3. Run the web client with webpack for local development.
```sh
yarn serve
npm start
```
4. Build the client with sourcemaps available.
```sh
yarn build:development
npm run build:development
```