mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
change build commands
This commit is contained in:
parent
43d81f5cd9
commit
b5a9273a24
2 changed files with 6 additions and 6 deletions
|
@ -44,15 +44,15 @@ jobs:
|
|||
- script: 'yarn install'
|
||||
displayName: 'Install Dependencies'
|
||||
|
||||
- script: 'yarn build'
|
||||
- script: 'yarn build:development'
|
||||
displayName: 'Build Development'
|
||||
condition: eq(variables['BuildConfiguration'], 'development')
|
||||
|
||||
- script: 'yarn build'
|
||||
- script: 'yarn build:bundle'
|
||||
displayName: 'Build Bundle'
|
||||
condition: eq(variables['BuildConfiguration'], 'bundle')
|
||||
|
||||
- script: 'yarn build --standalone'
|
||||
- script: 'yarn build:standalone'
|
||||
displayName: 'Build Standalone'
|
||||
condition: eq(variables['BuildConfiguration'], 'standalone')
|
||||
|
||||
|
|
|
@ -91,9 +91,9 @@
|
|||
"scripts": {
|
||||
"serve": "gulp serve",
|
||||
"prepare": "gulp --bundle",
|
||||
"build development": "gulp --development",
|
||||
"build bundle": "gulp --bundle",
|
||||
"build standalone": "gulp --standalone",
|
||||
"build:development": "gulp --development",
|
||||
"build:bundle": "gulp --bundle",
|
||||
"build:standalone": "gulp --standalone",
|
||||
"lint": "eslint \"src\"",
|
||||
"stylelint": "stylelint \"src/**/*.css\""
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue