����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.128.24.183 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/ner2/ucloud/app/assets/admin/vendors/raphael/ |
Upload File : |
"use strict"; const webpack = require("webpack"); const fs = require("fs"); const args = process.argv; let plugins = [ new webpack.BannerPlugin(fs.readFileSync('./dev/banner.txt', 'utf8'),{ raw: true, entryOnly: true }) ]; let externals = []; let filename = "raphael"; if(args.indexOf('--no-deps') !== -1){ console.log('Building version without deps'); externals.push("eve"); filename += ".no-deps" } if(args.indexOf('--min') !== -1){ console.log('Building minified version'); plugins.push( new webpack.optimize.UglifyJsPlugin({ compress:{ dead_code: false, unused: false } }) ); filename += ".min" } module.exports = { entry: './dev/raphael.amd.js', output: { filename: filename + ".js", libraryTarget: "umd", library: "Raphael", umdNamedDefine: true }, externals: externals, plugins: plugins, loaders: [ { test: /\.js$/, loader: "eslint-loader", include: "./dev/" } ], eslint: { configFile: './.eslintrc' }, resolve: { modulesDirectories: ["bower_components"] } };