mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
48 lines
1 KiB
JavaScript
48 lines
1 KiB
JavaScript
const webpack = require("webpack");
|
|
const TerserPlugin = require("terser-webpack-plugin");
|
|
|
|
const { version, author, license } = require("./package.json");
|
|
|
|
module.exports = {
|
|
mode: "production",
|
|
entry: {
|
|
NoSleep: `${__dirname}/src/index.js`,
|
|
"NoSleep.min": `${__dirname}/src/index.js`,
|
|
},
|
|
output: {
|
|
path: `${__dirname}/dist`,
|
|
filename: "[name].js",
|
|
library: "NoSleep",
|
|
libraryTarget: "umd",
|
|
globalObject: "this",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
use: {
|
|
loader: "babel-loader",
|
|
options: {
|
|
presets: ["env"],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
optimization: {
|
|
minimize: true,
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
test: /\.min\.js(\?.*)?$/i,
|
|
extractComments: false,
|
|
}),
|
|
],
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.BannerPlugin({
|
|
banner: `[name].js v${version} - git.io/vfn01 - ${author} - ${license} license`,
|
|
}),
|
|
],
|
|
};
|