| Server IP : 43.130.17.34 / Your IP : 216.73.217.6 Web Server : nginx/1.28.0 System : Linux VM-4-12-opencloudos 6.6.92-34.1.oc9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 25 21:32:13 CST 2025 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/yespkg.com/wp-content/plugins/admin-menu-editor-pro/ |
Upload File : |
import webpack from 'webpack';
import * as path from "path";
import * as url from "url";
import {WebpackManifestPlugin} from "webpack-manifest-plugin";
// noinspection JSUnusedGlobalSymbols - Webpack uses this function to get the config.
export default (env, argv) => {
const currentMode = (argv.mode === 'production') ? 'production' : 'development';
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
const __filename = url.fileURLToPath(import.meta.url);
return {
mode: currentMode,
entry: {
'admin-customizer': './extras/modules/admin-customizer/admin-customizer.ts',
'menu-styler-ui': './extras/modules/menu-styler/menu-styler-ui.ts',
'menu-styler-features': './extras/modules/menu-styler/menu-styler-features.ts',
'admin-customizer-preview': './extras/modules/admin-customizer/preview-handler.ts',
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js',
chunkLoadingGlobal: 'wsAmeWebpackChunk',
},
optimization: {
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
customizable: {
test: /[\\\/]customizable\./,
name: 'customizable',
chunks: 'all',
enforce: true
},
}
}
},
cache: {
type: 'filesystem',
buildDependencies: {
config: [__filename]
}
},
plugins: [
new webpack.DefinePlugin({
AME_IS_PRODUCTION: JSON.stringify(currentMode === 'production'),
}),
//This can be used to automatically find and load the required chunks
//for each entry point. However, it doesn't handle inter-chunk dependencies.
new WebpackManifestPlugin({
fileName: 'build.manifest.json',
generate: (seed, files) => {
const entryPoints = new Set()
files.forEach(
(file) => ((file.chunk || {})._groups || []).forEach(
(group) => entryPoints.add(group)
)
)
const entries = [...entryPoints]
return entries.reduce((acc, entry) => {
const name = (entry.options || {}).name
|| (entry.runtimeChunk || {}).name
const files = [].concat(
...(entry.chunks || []).map((chunk) => Array.from(chunk.files))
).filter(Boolean)
return name ? {...acc, [name]: files} : acc
}, seed)
}
}),
],
devtool: 'source-map',
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'ts-loader',
options: {
configFile: path.resolve(__dirname, 'tsconfig.json')
}
},
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.ts', '.js']
}
};
};