Complete rebranding of all components: - Core miner: xmrig -> miner (binary, version.h, CMakeLists.txt) - Proxy: xmrig-proxy -> miner-proxy - CUDA plugin: xmrig-cuda -> miner-cuda - Heatmap: xmrig-nonces-heatmap -> miner-nonces-heatmap - Go CLI wrapper: miner-cli -> miner-ctrl Vendored XMRig ecosystem into miner/ directory: - miner/core - XMRig CPU/GPU miner - miner/proxy - Stratum proxy - miner/cuda - NVIDIA CUDA plugin - miner/heatmap - Nonce visualization tool - miner/config - Configuration UI - miner/deps - Pre-built dependencies Updated dev fee to use project wallet with opt-out (kMinimumDonateLevel=0) Updated branding to Lethean (domain, copyright, version 0.1.0) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
50 lines
945 B
JavaScript
50 lines
945 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
|
|
|
|
|
|
module.exports = {
|
|
entry: [
|
|
'babel-polyfill',
|
|
'./index.js'
|
|
],
|
|
|
|
output: {
|
|
filename: 'assets/js/[chunkhash].js',
|
|
path: path.resolve(__dirname, 'public'),
|
|
publicPath: '/'
|
|
},
|
|
|
|
mode: 'production',
|
|
context: path.resolve(__dirname, 'src'),
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
use: [ 'babel-loader' ],
|
|
exclude: /node_modules/
|
|
}
|
|
],
|
|
},
|
|
|
|
plugins: [
|
|
new UglifyJsPlugin({
|
|
extractComments: true,
|
|
uglifyOptions: {
|
|
compress: {
|
|
drop_console: true,
|
|
// unsafe: true,
|
|
warnings: false
|
|
},
|
|
output: {
|
|
comments: false
|
|
},
|
|
}
|
|
}),
|
|
new HtmlWebpackPlugin({template: './index.html'})
|
|
],
|
|
};
|