1
0
Fork 0
peertube/client/webpack/webpack.video-embed.js

221 lines
5.3 KiB
JavaScript
Raw Normal View History

2017-07-23 12:49:52 +00:00
const helpers = require('./helpers')
2018-06-07 14:50:33 +00:00
const path = require('path')
2017-07-23 12:49:52 +00:00
const HtmlWebpackPlugin = require('html-webpack-plugin')
2018-09-21 07:18:28 +00:00
const TerserPlugin = require('terser-webpack-plugin')
2021-05-14 14:56:44 +00:00
const ProvidePlugin = require('webpack/lib/ProvidePlugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
2017-07-23 12:49:52 +00:00
module.exports = function () {
2017-07-23 12:49:52 +00:00
const configuration = {
entry: {
'video-embed': './src/standalone/videos/embed.ts',
2023-07-10 14:41:08 +00:00
'player': './src/standalone/embed-player-api/player.ts',
'test-embed': './src/standalone/videos/test-embed.ts'
2017-07-23 12:49:52 +00:00
},
resolve: {
/*
* An array of extensions that should be used to resolve modules.
*
* See: http://webpack.github.io/docs/configuration.html#resolve-extensions
*/
extensions: [ '.ts', '.js', '.json', '.scss' ],
2021-02-03 10:44:43 +00:00
modules: [ helpers.root('src'), 'node_modules' ],
2018-06-07 14:50:33 +00:00
2022-07-21 10:08:47 +00:00
symlinks: true,
2018-06-07 14:50:33 +00:00
alias: {
'video.js$': path.resolve('node_modules/video.js/core.js'),
2021-08-06 14:41:08 +00:00
'hls.js$': path.resolve('node_modules/hls.js/dist/hls.light.js'),
2020-08-03 16:06:49 +00:00
'@root-helpers': path.resolve('src/root-helpers'),
2020-06-26 06:37:26 +00:00
'@shared/models': path.resolve('../shared/models'),
2020-08-06 12:58:01 +00:00
'@shared/core-utils': path.resolve('../shared/core-utils')
2021-05-14 14:56:44 +00:00
},
fallback: {
fs: [ path.resolve('src/shims/noop.ts') ],
path: [ path.resolve('src/shims/path.ts') ],
crypto: [ path.resolve('src/shims/noop.ts') ]
2018-06-07 14:50:33 +00:00
}
2017-07-23 12:49:52 +00:00
},
output: {
path: helpers.root('dist/standalone/videos'),
2020-08-06 08:26:39 +00:00
filename: process.env.ANALYZE_BUNDLE === 'true'
? '[name].bundle.js'
2021-05-14 14:56:44 +00:00
: '[name].[contenthash].bundle.js',
2020-08-06 08:26:39 +00:00
2017-07-23 12:49:52 +00:00
sourceMapFilename: '[file].map',
2021-02-25 14:00:43 +00:00
chunkFilename: process.env.ANALYZE_BUNDLE === 'true'
? '[name].chunk.js'
2021-05-14 14:56:44 +00:00
: '[id].[contenthash].chunk.js',
2021-02-25 14:00:43 +00:00
2017-07-23 12:49:52 +00:00
publicPath: '/client/standalone/videos/'
},
2018-09-21 12:08:14 +00:00
devtool: process.env.NODE_ENV === 'production' ? false : 'source-map',
2018-05-29 13:05:03 +00:00
2017-07-23 12:49:52 +00:00
module: {
rules: [
{
test: /\.ts$/,
use: [
2023-02-21 13:20:15 +00:00
getBabelLoader(),
2017-07-23 12:49:52 +00:00
{
2020-06-26 06:37:26 +00:00
loader: 'ts-loader',
2017-07-23 12:49:52 +00:00
options: {
configFile: helpers.root('src/standalone/videos/tsconfig.json')
2017-07-23 12:49:52 +00:00
}
}
2020-06-26 06:37:26 +00:00
]
2017-07-23 12:49:52 +00:00
},
2021-09-01 13:55:54 +00:00
{
2021-11-24 14:37:44 +00:00
test: /\.m?js$/,
2023-02-21 13:20:15 +00:00
use: [ getBabelLoader() ]
2021-09-01 13:55:54 +00:00
},
2017-07-23 12:49:52 +00:00
{
test: /\.(sass|scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1
}
},
{
loader: 'sass-loader',
options: {
sassOptions: {
2017-07-23 12:49:52 +00:00
sourceMap: true,
includePaths: [
helpers.root('src/sass/include')
]
2017-07-23 12:49:52 +00:00
}
}
}
]
2017-07-23 12:49:52 +00:00
},
{
test: /\.html$/,
exclude: [
helpers.root('src/index.html'),
helpers.root('src/standalone/videos/embed.html'),
helpers.root('src/standalone/videos/test-embed.html')
2021-08-17 12:31:30 +00:00
],
type: 'asset/source'
2017-07-23 12:49:52 +00:00
},
{
2021-08-17 12:31:30 +00:00
test: /\.(jpg|png|gif|svg)$/,
type: 'asset'
2017-07-23 12:49:52 +00:00
},
2021-08-17 12:31:30 +00:00
{
test: /\.(ttf|eot|woff2?)$/,
type: 'asset'
}
2017-07-23 12:49:52 +00:00
]
},
plugins: [
2021-05-14 14:56:44 +00:00
new ProvidePlugin({
process: 'process/browser',
Buffer: [ 'buffer', 'Buffer' ]
}),
new MiniCssExtractPlugin({
2020-08-06 08:26:39 +00:00
filename: process.env.ANALYZE_BUNDLE === 'true'
? '[name].css'
2021-05-14 14:56:44 +00:00
: '[name].[contenthash].css'
2017-07-23 12:49:52 +00:00
}),
new HtmlWebpackPlugin({
template: 'src/standalone/videos/embed.html',
filename: 'embed.html',
title: 'PeerTube',
2020-03-31 13:43:17 +00:00
chunksSortMode: 'auto',
inject: 'body',
2021-05-14 14:56:44 +00:00
chunks: [ 'video-embed' ],
minify: {
collapseWhitespace: true,
removeComments: false,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
useShortDoctype: true
}
}),
new HtmlWebpackPlugin({
template: '!!html-loader!src/standalone/videos/test-embed.html',
filename: 'test-embed.html',
title: 'PeerTube',
2020-03-31 13:43:17 +00:00
chunksSortMode: 'auto',
inject: 'body',
2021-05-14 14:56:44 +00:00
chunks: [ 'test-embed' ]
2017-07-23 12:49:52 +00:00
})
],
2018-09-21 07:18:28 +00:00
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
ecma: 6,
warnings: false,
ie8: false,
safari10: false,
2018-09-21 07:18:28 +00:00
mangle: true,
compress: {
passes: 3,
pure_getters: true
},
output: {
ascii_only: true,
comments: false
}
}
})
]
},
2018-04-06 14:06:43 +00:00
performance: {
2018-05-14 08:57:07 +00:00
maxEntrypointSize: 700000, // 600kB
maxAssetSize: 700000
2018-04-06 14:06:43 +00:00
},
2017-07-23 12:49:52 +00:00
node: {
2021-05-14 14:56:44 +00:00
global: true
2017-07-23 12:49:52 +00:00
}
}
return configuration
}
2023-02-21 13:20:15 +00:00
function getBabelLoader () {
return {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env', {
targets: 'last 1 Chrome version, last 2 Edge major versions, Firefox ESR, Safari >= 12, ios_saf >= 12'
2023-02-21 13:20:15 +00:00
}
]
]
}
}
}