Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
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`,
}),
],
};