mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Update build scripts
This commit is contained in:
@@ -5,14 +5,13 @@
|
||||
"main": "src-electron/main.js",
|
||||
"scripts": {
|
||||
"dev": "cross-env PLATFORM=windows vite serve src",
|
||||
"dev-linux": "cross-env PLATFORM=linux vite serve src",
|
||||
"dev:test": "concurrently \"npm run dev\" \"jest --watchAll\"",
|
||||
"watch": "cross-env PLATFORM=windows webpack --config webpack.config.js --mode development --watch",
|
||||
"watch-linux": "cross-env PLATFORM=linux webpack --config webpack.config.js --mode development --watch",
|
||||
"localization": "node ./src/localization/localizationHelperCLI.js",
|
||||
"test": "jest",
|
||||
"test:coverage": "jest --coverage",
|
||||
"prod": "cross-env PLATFORM=windows vite build src",
|
||||
"prod-linux": "cross-env PLATFORM=linux webpack --config webpack.config.js --mode production",
|
||||
"prod-linux": "cross-env PLATFORM=linux vite build src",
|
||||
"build-electron": "node ./src-electron/download-dotnet-runtime.js --arch=x64 && node ./src-electron/patch-package-version.js && electron-builder --x64 --publish never",
|
||||
"build-electron-arm64": "node ./src-electron/download-dotnet-runtime.js --arch=arm64 && node ./src-electron/patch-package-version.js && electron-builder --arm64 --publish never",
|
||||
"postbuild-electron": "node ./src-electron/patch-node-api-dotnet.js --arch=x64 && node ./src-electron/rename-builds.js --arch=x64",
|
||||
|
||||
@@ -1,156 +0,0 @@
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const { VueLoaderPlugin } = require('vue-loader');
|
||||
const { EsbuildPlugin } = require('esbuild-loader');
|
||||
|
||||
// const scssBasePath = './src/assets/scss/';
|
||||
// const themeBasePath = `${scssBasePath}themes/`;
|
||||
|
||||
module.exports = (env, argv) => {
|
||||
const isProduction = argv.mode === 'production';
|
||||
return {
|
||||
entry: {
|
||||
// vendor: ['element-ui', 'noty', 'vue', 'vue-i18n', 'worker-timers'],
|
||||
app: {
|
||||
import: ['./src/app.js', './src/app.scss']
|
||||
// dependOn: 'vendor'
|
||||
}
|
||||
// vr: {
|
||||
// import: ['./src/vr.js', './src/vr.scss'],
|
||||
// dependOn: 'vendor'
|
||||
// },
|
||||
// 'theme.dark': `${themeBasePath}theme.dark.scss`,
|
||||
// 'theme.darkblue': `${themeBasePath}theme.darkblue.scss`,
|
||||
// 'theme.amoled' : `${themeBasePath}theme.amoled.scss`,
|
||||
// 'theme.darkvanillaold': `${themeBasePath}theme.darkvanillaold.scss`,
|
||||
// 'theme.darkvanilla': `${themeBasePath}theme.darkvanilla.scss`,
|
||||
// 'theme.pink': `${themeBasePath}theme.pink.scss`,
|
||||
// 'theme.material3': `${themeBasePath}theme.material3.scss`
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'build/html'),
|
||||
filename: '[name].js',
|
||||
clean: true
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue-loader'
|
||||
},
|
||||
{
|
||||
test: /\.js$/,
|
||||
exclude: [/node_modules/],
|
||||
resourceQuery: { not: /vue/ },
|
||||
loader: 'esbuild-loader',
|
||||
options: {
|
||||
target: 'es2022'
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.pug$/,
|
||||
use: ['raw-loader', 'pug-plain-loader']
|
||||
},
|
||||
{
|
||||
test: /\.s?css$/,
|
||||
use: [
|
||||
MiniCssExtractPlugin.loader,
|
||||
'css-loader',
|
||||
{
|
||||
loader: 'sass-loader',
|
||||
options: {
|
||||
sassOptions: {
|
||||
quietDeps: true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
test: /\.(eot|png|svg|ttf|woff)/,
|
||||
type: 'asset',
|
||||
generator: {
|
||||
filename: 'assets/[name][ext]'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
devServer: {
|
||||
port: 9000,
|
||||
client: {
|
||||
overlay: {
|
||||
warnings: false,
|
||||
errors: true
|
||||
}
|
||||
}
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.js', '.vue', '.css', '.scss']
|
||||
// alias: {
|
||||
// vue: 'vue/dist/vue.esm.js'
|
||||
// }
|
||||
},
|
||||
performance: {
|
||||
hints: false
|
||||
},
|
||||
devtool: 'inline-source-map',
|
||||
target: ['web', 'es2022'],
|
||||
stats: {
|
||||
preset: 'errors-warnings',
|
||||
timings: true
|
||||
},
|
||||
plugins: [
|
||||
new webpack.DefinePlugin({
|
||||
LINUX: JSON.stringify(process.env.PLATFORM === 'linux'),
|
||||
WINDOWS: JSON.stringify(process.env.PLATFORM === 'windows'),
|
||||
__VUE_I18N_LEGACY_API__: JSON.stringify(false),
|
||||
__VUE_I18N_FULL_INSTALL__: JSON.stringify(false),
|
||||
__INTLIFY_DROP_MESSAGE_COMPILER__: JSON.stringify(true)
|
||||
}),
|
||||
new VueLoaderPlugin(),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: '[name].css'
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
filename: 'index.html',
|
||||
template: './src/static/index.html',
|
||||
inject: true,
|
||||
chunks: 'app'
|
||||
}),
|
||||
// new HtmlWebpackPlugin({
|
||||
// filename: 'vr.html',
|
||||
// template: './src/static/vr.html',
|
||||
// inject: true,
|
||||
// chunks: ['vendor', 'vr']
|
||||
// }),
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: './images/',
|
||||
to: './images/'
|
||||
}
|
||||
]
|
||||
}),
|
||||
new webpack.ProgressPlugin({})
|
||||
],
|
||||
optimization: {
|
||||
minimizer: isProduction
|
||||
? [
|
||||
new EsbuildPlugin({
|
||||
css: true,
|
||||
sourcemap: true
|
||||
})
|
||||
]
|
||||
: [],
|
||||
splitChunks: {
|
||||
chunks: 'all'
|
||||
}
|
||||
},
|
||||
watchOptions: {
|
||||
ignored: /node_modules/
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user