PeerTube/client/webpack/webpack.video-embed.js

202 lines
5.0 KiB
JavaScript
Raw Normal View History

2017-07-23 14:49:52 +02:00
const helpers = require('./helpers')
2018-06-07 16:50:33 +02:00
const path = require('path')
2017-07-23 14:49:52 +02:00
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin
const HtmlWebpackPlugin = require('html-webpack-plugin')
2018-09-21 09:18:28 +02:00
const TerserPlugin = require('terser-webpack-plugin')
const LoaderOptionsPlugin = require('webpack/lib/LoaderOptionsPlugin')
2017-07-23 14:49:52 +02:00
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const PurifyCSSPlugin = require('purifycss-webpack')
module.exports = function () {
2017-07-23 14:49:52 +02:00
const configuration = {
entry: {
'video-embed': './src/standalone/videos/embed.ts',
'player': './src/standalone/player/player.ts',
'test-embed': './src/standalone/videos/test-embed.ts'
2017-07-23 14:49:52 +02: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' ],
2018-06-07 16:50:33 +02:00
modules: [ helpers.root('src'), helpers.root('node_modules') ],
alias: {
2020-01-28 17:29:50 +01:00
'video.js$': path.resolve('node_modules/video.js/dist/alt/video.core.novtt.js')
2018-06-07 16:50:33 +02:00
}
2017-07-23 14:49:52 +02:00
},
output: {
path: helpers.root('dist/standalone/videos'),
filename: '[name].[hash].bundle.js',
sourceMapFilename: '[file].map',
chunkFilename: '[id].chunk.js',
publicPath: '/client/standalone/videos/'
},
2018-09-21 14:08:14 +02:00
devtool: process.env.NODE_ENV === 'production' ? false : 'source-map',
2018-05-29 15:05:03 +02:00
2017-07-23 14:49:52 +02:00
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'awesome-typescript-loader',
options: {
configFileName: 'tsconfig.json'
2017-07-23 14:49:52 +02:00
}
}
],
exclude: [/\.(spec|e2e)\.ts$/]
},
{
test: /\.(sass|scss)$/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
sourceMap: true,
importLoaders: 1
}
},
2018-09-21 09:18:28 +02:00
// {
// loader: 'resolve-url-loader',
// options: {
// debug: true
// }
// },
2017-07-23 14:49:52 +02:00
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: [
helpers.root('src/sass/include')
2017-07-23 14:49:52 +02:00
]
}
}
]
})
},
{
test: /\.html$/,
use: 'raw-loader',
exclude: [
helpers.root('src/index.html'),
helpers.root('src/standalone/videos/embed.html'),
helpers.root('src/standalone/videos/test-embed.html')
2017-07-23 14:49:52 +02:00
]
},
{
test: /\.(jpg|png|gif)$/,
use: 'url-loader'
},
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: 'url-loader?limit=10000&minetype=application/font-woff' },
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, use: 'file-loader' }
]
},
plugins: [
new ExtractTextPlugin({
2018-04-06 16:06:43 +02:00
filename: '[name].[hash].css'
2017-07-23 14:49:52 +02:00
}),
new PurifyCSSPlugin({
2018-09-21 09:18:28 +02:00
paths: [
helpers.root('src/standalone/videos/embed.ts'),
2018-09-21 09:18:28 +02:00
helpers.root('src/standalone/videos/test-embed.html')
],
2017-07-23 14:49:52 +02:00
purifyOptions: {
minify: true,
whitelist: [ '*vjs*', '*video-js*' ]
}
}),
new CheckerPlugin(),
new HtmlWebpackPlugin({
template: 'src/standalone/videos/embed.html',
filename: 'embed.html',
title: 'PeerTube',
chunksSortMode: 'dependency',
inject: 'body',
chunks: ['video-embed']
}),
new HtmlWebpackPlugin({
template: '!!html-loader!src/standalone/videos/test-embed.html',
filename: 'test-embed.html',
title: 'PeerTube',
chunksSortMode: 'dependency',
inject: 'body',
chunks: ['test-embed']
}),
/**
* Plugin LoaderOptionsPlugin (experimental)
*
* See: https://gist.github.com/sokra/27b24881210b56bbaff7
*/
new LoaderOptionsPlugin({
options: {
context: __dirname,
output: {
path: helpers.root('dist')
}
}
2017-07-23 14:49:52 +02:00
})
],
2018-09-21 09:18:28 +02: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 16:06:43 +02:00
performance: {
2018-05-14 10:57:07 +02:00
maxEntrypointSize: 700000, // 600kB
maxAssetSize: 700000
2018-04-06 16:06:43 +02:00
},
2017-07-23 14:49:52 +02:00
node: {
global: true,
crypto: 'empty',
fs: 'empty',
process: true,
module: false,
clearImmediate: false,
setImmediate: false
}
}
return configuration
}