Merge pull request #109 from dmitrylyzo/npm

Move to NPM
This commit is contained in:
Dmitry Lyzo 2022-03-17 23:40:52 +03:00 committed by GitHub
commit 0f3ca9b2ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4896 additions and 9 deletions

View File

@ -7,8 +7,8 @@ _Also look [Wiki](https://github.com/jellyfin/jellyfin-tizen/wiki)._
### Prerequisites
* Tizen Studio with IDE or Tizen Studio with CLI (<a href="https://developer.tizen.org/development/tizen-studio/download">https://developer.tizen.org/development/tizen-studio/download</a>)
* Git
* Node.js
* Yarn
* Node.js 14+
* Yarn (for jellyfin-web 10.7 and lower)
* Samsung account
### Getting Started
@ -50,7 +50,7 @@ If any changes are made to `jellyfin-web/`, the `jellyfin-web/dist/` directory w
```sh
cd jellyfin-tizen
JELLYFIN_WEB_DIR=../jellyfin-web/dist yarn install
JELLYFIN_WEB_DIR=../jellyfin-web/dist npm ci --no-audit
```
> You should get `jellyfin-tizen/www/` directory.

4887
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,11 +9,11 @@
"scripts": {
"postinstall": "gulp"
},
"dependencies": {
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-dom": "^1.0.0",
"gulp-if": "^3.0.0",
"gulp-scan": "^0.1.4"
"devDependencies": {
"del": "5.1.0",
"gulp": "4.0.2",
"gulp-dom": "1.0.0",
"gulp-if": "3.0.0",
"gulp-scan": "0.1.4"
}
}