misc_pterodactyl-panel/webpack.config.js

216 lines
6.7 KiB
JavaScript
Raw Normal View History

const _ = require('lodash');
2018-06-04 01:03:46 +00:00
const path = require('path');
2018-06-04 02:50:58 +00:00
const tailwind = require('tailwindcss');
const glob = require('glob-all');
2018-06-04 02:35:50 +00:00
const AssetsManifestPlugin = require('webpack-assets-manifest');
2018-06-04 01:46:27 +00:00
const CleanPlugin = require('clean-webpack-plugin');
2019-02-03 01:33:12 +00:00
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
2018-06-04 01:46:27 +00:00
const ShellPlugin = require('webpack-shell-plugin');
2018-06-04 02:50:58 +00:00
const PurgeCssPlugin = require('purgecss-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
2018-12-16 22:30:21 +00:00
2019-02-03 01:33:12 +00:00
const isProduction = process.env.NODE_ENV === 'production';
2018-06-04 01:03:46 +00:00
2019-02-03 01:33:12 +00:00
let plugins = [
new CleanPlugin(path.resolve(__dirname, 'public/assets')),
new ShellPlugin({
onBuildStart: [
'php artisan vue-i18n:generate',
'php artisan ziggy:generate resources/assets/scripts/helpers/ziggy.js',
],
}),
new MiniCssExtractPlugin({ filename: isProduction ? 'bundle.[chunkhash:8].css' : 'bundle.[hash:8].css' }),
new AssetsManifestPlugin({
writeToDisk: true,
publicPath: true,
integrity: true,
integrityHashes: ['sha384'],
}),
new VueLoaderPlugin(),
new ForkTsCheckerWebpackPlugin({
vue: true,
}),
];
2019-02-03 01:33:12 +00:00
if (isProduction) {
plugins = plugins.concat([
new PurgeCssPlugin({
paths: glob.sync([
path.join(__dirname, 'resources/assets/scripts/**/*.vue'),
path.join(__dirname, 'resources/assets/scripts/**/*.ts'),
path.join(__dirname, 'resources/themes/pterodactyl/**/*.blade.php'),
]),
// Don't let PurgeCSS remove classes ending with -enter or -leave-active
// They're used by Vue transitions and are therefore not specifically defined
// in any of the files are are checked by PurgeCSS.
2019-02-03 23:10:21 +00:00
whitelistPatterns: [/^xterm/, /-enter$/, /-leave-active$/],
2019-02-03 01:33:12 +00:00
extractors: [
{
extractor: class {
static extract (content) {
return content.match(/[A-z0-9-:\/]+/g) || [];
}
},
extensions: ['html', 'ts', 'js', 'php', 'vue'],
2019-02-03 01:33:12 +00:00
},
],
}),
]);
}
const typescriptLoaders = [
{
loader: 'babel-loader',
options: {
cacheDirectory: !isProduction,
presets: ['@babel/preset-env'],
plugins: [
'@babel/plugin-proposal-class-properties',
['@babel/plugin-proposal-object-rest-spread', { 'useBuiltIns': true }]
],
},
},
{
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/],
experimentalWatchApi: true,
transpileOnly: true,
2019-02-03 01:33:12 +00:00
}
}
];
const cssLoaders = [
{ loader: MiniCssExtractPlugin.loader },
{
loader: 'css-loader',
options: {
sourceMap: !isProduction,
importLoaders: 1,
}
},
{ loader: 'resolve-url-loader' },
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
sourceMap: true,
plugins: [
require('postcss-import'),
tailwind('./tailwind.js'),
require('postcss-preset-env')({
stage: 2,
}),
require('precss'),
].concat(isProduction ? require('cssnano') : []),
}
}
];
module.exports = {
2019-02-03 02:49:51 +00:00
target: 'web',
mode: process.env.NODE_ENV,
2019-02-17 21:03:15 +00:00
devtool: isProduction ? false : 'eval-source-map',
2018-06-04 00:40:35 +00:00
performance: {
hints: false,
},
2018-12-30 00:11:49 +00:00
entry: ['./resources/assets/styles/main.css', './resources/assets/scripts/app.ts'],
output: {
path: path.resolve(__dirname, 'public/assets'),
filename: isProduction ? 'bundle.[chunkhash:8].js' : 'bundle.[hash:8].js',
chunkFilename: isProduction ? '[name].[chunkhash:8].js' : '[name].[hash:8].js',
publicPath: _.get(process.env, 'PUBLIC_PATH', '') + '/assets/',
2018-06-04 01:46:27 +00:00
crossOriginLoading: 'anonymous',
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
2019-02-03 03:00:34 +00:00
exclude: file => (/node_modules/.test(file) && !/\.vue\.js/.test(file)),
options: {
cacheDirectory: !isProduction,
presets: ['@babel/preset-env'],
plugins: [
'@babel/plugin-proposal-class-properties',
['@babel/plugin-proposal-object-rest-spread', { 'useBuiltIns': true }]
],
},
},
{
test: /\.vue$/,
use: 'vue-loader',
},
2018-12-16 22:30:21 +00:00
{
test: /\.ts$/,
2018-12-16 22:30:21 +00:00
exclude: /node_modules/,
2019-02-03 01:33:12 +00:00
use: typescriptLoaders,
},
{
2018-06-04 01:46:27 +00:00
test: /\.css$/,
include: [
2018-06-04 02:35:50 +00:00
path.resolve(__dirname, 'resources'),
2018-06-04 01:46:27 +00:00
],
2019-02-03 01:33:12 +00:00
use: cssLoaders,
2018-12-16 22:30:21 +00:00
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
2019-02-03 01:33:12 +00:00
name: '[name].[ext]?[hash:8]',
2018-12-16 22:30:21 +00:00
},
},
],
},
resolve: {
2018-12-16 22:30:21 +00:00
extensions: ['.ts', '.js', '.vue', '.json'],
alias: {
2018-12-16 22:30:21 +00:00
'vue$': 'vue/dist/vue.esm.js',
2019-02-03 22:49:04 +00:00
'@': path.join(__dirname, 'resources/assets/scripts'),
},
symlinks: false,
},
2019-02-03 01:33:12 +00:00
plugins: plugins,
optimization: {
minimize: true,
minimizer: !isProduction ? [] : [
new UglifyJsPlugin({
cache: true,
parallel: true,
uglifyOptions: {
output: {
comments: false,
},
},
}),
],
splitChunks: {
cacheGroups: {
locales: {
test: /locales/,
name: 'locales',
chunks: 'initial',
},
vendors: {
2019-02-10 03:15:18 +00:00
test: /[\\/]node_modules[\\/]/,
name: 'vendor',
chunks: 'initial',
},
}
}
2019-02-03 01:33:12 +00:00
},
devServer: {
contentBase: path.join(__dirname, 'public'),
2019-02-03 02:49:51 +00:00
publicPath: _.get(process.env, 'PUBLIC_PATH', '') + '/assets/',
2019-02-03 01:33:12 +00:00
allowedHosts: [
'.pterodactyl.test',
],
headers: {
'Access-Control-Allow-Origin': '*',
2018-12-16 22:30:21 +00:00
},
},
};