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