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

Add barebones comic book reader

This commit is contained in:
MrTimscampi 2020-05-29 23:32:45 +02:00
parent aae276dad1
commit 2ea2132740
8 changed files with 252 additions and 6 deletions

View file

@ -1,10 +1,12 @@
const path = require('path');
const CopyPlugin = require('copy-webpack-plugin');
const WorkerPlugin = require('worker-plugin');
const Assets = [
'alameda/alameda.js',
'native-promise-only/npo.js',
'libarchive.js/dist/worker-bundle.js',
'libass-wasm/dist/js/subtitles-octopus-worker.js',
'libass-wasm/dist/js/subtitles-octopus-worker.data',
'libass-wasm/dist/js/subtitles-octopus-worker.wasm',
@ -13,6 +15,11 @@ const Assets = [
'libass-wasm/dist/js/subtitles-octopus-worker-legacy.js.mem'
];
const LibarchiveWasm = [
'libarchive.js/dist/wasm-gen/libarchive.js',
'libarchive.js/dist/wasm-gen/libarchive.wasm'
];
module.exports = {
context: path.resolve(__dirname, 'src'),
entry: './bundle.js',
@ -34,6 +41,15 @@ module.exports = {
to: path.resolve(__dirname, './dist/libraries')
};
})
)
),
new CopyPlugin(
LibarchiveWasm.map(asset => {
return {
from: path.resolve(__dirname, `./node_modules/${asset}`),
to: path.resolve(__dirname, './dist/libraries/wasm-gen/')
};
})
),
new WorkerPlugin()
]
};