Merge pull request #162 from vitorsemeano/webpack_part1

Convertion to webpack - part1 - npm and dynamic module resolution for site.js
This commit is contained in:
Vasily 2019-03-13 00:03:47 +03:00 committed by GitHub
commit 65aec76e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4047 additions and 606 deletions

3
.gitignore vendored
View File

@ -570,3 +570,6 @@ ASALocalRun/
healthchecksdb healthchecksdb
# End of https://www.gitignore.io/api/node,rider,macos,linux,windows,visualstudio,visualstudiocode # End of https://www.gitignore.io/api/node,rider,macos,linux,windows,visualstudio,visualstudiocode
# dist for webpack output
dist

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "jellyfin-web",
"version": "0.0.0",
"description": "Web interface for Jellyfin",
"repository": "https://github.com/jellyfin/jellyfin-web",
"license": "GPL-2",
"devDependencies": {
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}

File diff suppressed because it is too large Load Diff

2845
yarn.lock Normal file

File diff suppressed because it is too large Load Diff