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

Merge pull request #500 from thornbill/prepare-script

Restore prepare script
This commit is contained in:
Vasily 2019-10-03 18:30:54 +03:00 committed by GitHub
commit 28380365b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -28,6 +28,10 @@ jobs:
yarn install
displayName: 'Install dependencies'
- script: |
test -d dist
displayName: 'Check dist directory'
- script: |
yarn pack --filename jellyfin-web.tgz
displayName: 'Build package'

View file

@ -27,6 +27,7 @@
"scripts": {
"serve": "webpack-dev-server --config webpack.dev.js --open",
"build": "webpack --config webpack.prod.js",
"lint": "eslint \"src\""
"lint": "eslint \"src\"",
"prepare": "webpack --config webpack.prod.js"
}
}