Repo created
This commit is contained in:
parent
f3a6b3a320
commit
f954c78789
614 changed files with 135712 additions and 2 deletions
236
_scripts/webpack.android.config.js
Normal file
236
_scripts/webpack.android.config.js
Normal file
|
|
@ -0,0 +1,236 @@
|
|||
const path = require('path')
|
||||
const fs = require('fs')
|
||||
const webpack = require('webpack')
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
||||
const VueLoaderPlugin = require('vue-loader/lib/plugin')
|
||||
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
|
||||
const JsonMinimizerPlugin = require('json-minimizer-webpack-plugin')
|
||||
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
|
||||
const ProcessLocalesPlugin = require('./ProcessLocalesPlugin')
|
||||
const {
|
||||
SHAKA_LOCALE_MAPPINGS,
|
||||
SHAKA_LOCALES_PREBUNDLED,
|
||||
SHAKA_LOCALES_TO_BE_BUNDLED
|
||||
} = require('./getShakaLocales')
|
||||
const { sigViewTemplateParameters } = require('./sigViewConfig')
|
||||
|
||||
const isDevMode = process.env.NODE_ENV === 'development'
|
||||
|
||||
const { version: swiperVersion } = JSON.parse(fs.readFileSync(path.join(__dirname, '../node_modules/swiper/package.json')))
|
||||
|
||||
const config = {
|
||||
name: 'web',
|
||||
mode: process.env.NODE_ENV,
|
||||
devtool: isDevMode ? 'eval-cheap-module-source-map' : false,
|
||||
entry: {
|
||||
web: path.join(__dirname, '../src/renderer/main.js'),
|
||||
},
|
||||
output: {
|
||||
path: path.join(__dirname, '../android/app/src/main/assets'),
|
||||
filename: '[name].js',
|
||||
},
|
||||
externals: {
|
||||
android: 'Android'
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
use: 'babel-loader',
|
||||
exclude: /node_modules/,
|
||||
},
|
||||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue-loader',
|
||||
options: {
|
||||
compilerOptions: {
|
||||
whitespace: 'condense',
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.scss$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader,
|
||||
},
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
esModule: false
|
||||
}
|
||||
},
|
||||
{
|
||||
loader: 'sass-loader',
|
||||
options: {
|
||||
implementation: require('sass')
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
use: [
|
||||
{
|
||||
loader: MiniCssExtractPlugin.loader
|
||||
},
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
esModule: false
|
||||
}
|
||||
}
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.html$/,
|
||||
use: 'vue-html-loader',
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpe?g|gif|tif?f|bmp|webp|svg)(\?.*)?$/,
|
||||
type: 'asset/resource',
|
||||
generator: {
|
||||
filename: 'imgs/[name][ext]'
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
|
||||
type: 'asset/resource',
|
||||
generator: {
|
||||
filename: 'fonts/[name][ext]'
|
||||
}
|
||||
},
|
||||
],
|
||||
},
|
||||
// webpack defaults to only optimising the production builds, so having this here is fine
|
||||
optimization: {
|
||||
minimizer: [
|
||||
'...', // extend webpack's list instead of overwriting it
|
||||
new JsonMinimizerPlugin({
|
||||
exclude: /\/locales\/.*\.json/
|
||||
}),
|
||||
new CssMinimizerPlugin()
|
||||
]
|
||||
},
|
||||
node: {
|
||||
__dirname: true,
|
||||
__filename: isDevMode,
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
'process.env.IS_ELECTRON': false,
|
||||
'process.env.IS_ELECTRON_MAIN': false,
|
||||
'process.env.IS_ANDROID': true,
|
||||
'process.env.IS_RELEASE': !isDevMode,
|
||||
'process.env.SUPPORTS_LOCAL_API': true,
|
||||
'process.env.SWIPER_VERSION': `'${swiperVersion}'`,
|
||||
// video.js' vhs-utils supports both atob() in web browsers and Buffer in node
|
||||
// As the FreeTube web build only runs in web browsers, we can override their check for atob() here: https://github.com/videojs/vhs-utils/blob/main/src/decode-b64-to-uint8-array.js#L3
|
||||
// overriding that check means we don't need to include a Buffer polyfill
|
||||
// https://caniuse.com/atob-btoa
|
||||
|
||||
// NOTE FOR THE FUTURE: this override won't work with vite as their define does a find and replace in the code for production builds,
|
||||
// but uses globals in development builds to save build time, so this would replace the actual atob() function with true if used with vite
|
||||
// this works in webpack as webpack does a find and replace in the source code for both development and production builds
|
||||
// https://vitejs.dev/config/shared-options.html#define
|
||||
// https://webpack.js.org/plugins/define-plugin/
|
||||
'window.atob': true
|
||||
}),
|
||||
new webpack.ProvidePlugin({
|
||||
process: 'process/browser.js'
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
excludeChunks: ['processTaskWorker'],
|
||||
filename: 'index.html',
|
||||
template: path.resolve(__dirname, '../src/index.ejs'),
|
||||
nodeModules: false,
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: "decipher.html",
|
||||
inject: false,
|
||||
templateContent: sigViewTemplateParameters.sigViewRaw,
|
||||
nodeModules: false
|
||||
}),
|
||||
new VueLoaderPlugin(),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: isDevMode ? '[name].css' : '[name].[contenthash].css',
|
||||
chunkFilename: isDevMode ? '[id].css' : '[id].[contenthash].css',
|
||||
}),
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: path.join(__dirname, '../node_modules/swiper/modules/{a11y,navigation,pagination}-element.css').replaceAll('\\', '/'),
|
||||
to: `swiper-${swiperVersion}.css`,
|
||||
context: path.join(__dirname, '../node_modules/swiper/modules'),
|
||||
transformAll: (assets) => {
|
||||
return Buffer.concat(assets.map(asset => asset.data))
|
||||
}
|
||||
}
|
||||
]
|
||||
})
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
vue$: 'vue/dist/vue.runtime.esm.js',
|
||||
'portal-vue$': 'portal-vue/dist/portal-vue.esm.js',
|
||||
|
||||
DB_HANDLERS_ELECTRON_RENDERER_OR_WEB$: path.resolve(__dirname, '../src/datastores/handlers/web.js'),
|
||||
|
||||
// change to "shaka-player.ui.debug.js" to get debug logs (update jsconfig to get updated types)
|
||||
'shaka-player$': 'shaka-player/dist/shaka-player.ui.js',
|
||||
'localforage': path.resolve(__dirname, '_localforage.js')
|
||||
},
|
||||
fallback: {
|
||||
'fs/promises': path.resolve(__dirname, '_empty.js'),
|
||||
path: require.resolve('path-browserify'),
|
||||
},
|
||||
extensions: ['.js', '.vue']
|
||||
},
|
||||
target: 'web',
|
||||
}
|
||||
|
||||
const processLocalesPlugin = new ProcessLocalesPlugin({
|
||||
compress: false,
|
||||
inputDir: path.join(__dirname, '../static/locales'),
|
||||
outputDir: 'static/locales',
|
||||
})
|
||||
const processAndroidLocales = new ProcessLocalesPlugin({
|
||||
compress: false,
|
||||
inputDir: path.join(__dirname, '../static/locales-android'),
|
||||
outputDir: 'static/locales-android',
|
||||
})
|
||||
config.plugins.push(
|
||||
processLocalesPlugin,
|
||||
processAndroidLocales,
|
||||
new webpack.DefinePlugin({
|
||||
'process.env.LOCALE_NAMES': JSON.stringify(processLocalesPlugin.localeNames),
|
||||
'process.env.GEOLOCATION_NAMES': JSON.stringify(fs.readdirSync(path.join(__dirname, '..', 'static', 'geolocations')).map(filename => filename.replace('.json', ''))),
|
||||
'process.env.SHAKA_LOCALE_MAPPINGS': JSON.stringify(SHAKA_LOCALE_MAPPINGS),
|
||||
'process.env.SHAKA_LOCALES_PREBUNDLED': JSON.stringify(SHAKA_LOCALES_PREBUNDLED)
|
||||
}),
|
||||
new CopyWebpackPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: path.join(__dirname, '../static/pwabuilder-sw.js'),
|
||||
to: path.join(__dirname, '../android/app/src/main/assets/pwabuilder-sw.js'),
|
||||
},
|
||||
{
|
||||
from: path.join(__dirname, '../static'),
|
||||
to: path.join(__dirname, '../android/app/src/main/assets/static'),
|
||||
globOptions: {
|
||||
dot: true,
|
||||
ignore: ['**/.*', '**/locales/**', '**/locales-android/**', '**/pwabuilder-sw.js', '**/dashFiles/**', '**/storyboards/**'],
|
||||
},
|
||||
},
|
||||
{
|
||||
from: path.join(__dirname, '../node_modules/shaka-player/ui/locales', `{${SHAKA_LOCALES_TO_BE_BUNDLED.join(',')}}.json`).replaceAll('\\', '/'),
|
||||
to: path.join(__dirname, '../android/app/src/main/assets/static/shaka-player-locales'),
|
||||
context: path.join(__dirname, '../node_modules/shaka-player/ui/locales')
|
||||
}
|
||||
]
|
||||
})
|
||||
)
|
||||
|
||||
|
||||
module.exports = config
|
||||
Loading…
Add table
Add a link
Reference in a new issue