Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.117.100.220
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
HRD-Test /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
e2e
[ DIR ]
drwxr-xr-x
treeshake
[ DIR ]
drwxr-xr-x
unit
[ DIR ]
drwxr-xr-x
rollup.treeshake.config.js
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rollup.treeshake.config.js
import path from 'path'; import resolve from '@rollup/plugin-node-resolve'; import filesize from 'rollup-plugin-filesize'; import terser from '@rollup/plugin-terser'; import { visualizer } from 'rollup-plugin-visualizer'; import { glsl } from '../utils/build/rollup.config.js'; import chalk from 'chalk'; const statsFile = path.resolve( 'test/treeshake/stats.html' ); function logStatsFile() { return { writeBundle() { console.log(); console.log( 'Open the following url in a browser to analyze the tree-shaken bundle.' ); console.log( chalk.blue.bold.underline( statsFile ) ); console.log(); } }; } export default [ { input: 'test/treeshake/index.js', plugins: [ resolve(), ], output: [ { format: 'esm', file: 'test/treeshake/index.bundle.js' } ] }, { input: 'test/treeshake/index.js', plugins: [ resolve(), terser(), filesize( { showMinifiedSize: false, } ), ], output: [ { format: 'esm', file: 'test/treeshake/index.bundle.min.js' } ] }, { input: 'test/treeshake/index-src.js', plugins: [ glsl(), terser(), visualizer( { filename: statsFile, } ), logStatsFile(), ], output: [ { format: 'esm', file: 'test/treeshake/index-src.bundle.min.js' } ] }, ];
Close