|
@@ -6,197 +6,47 @@
|
|
|
|
|
|
const fs = require('fs');
|
|
|
const path = require('path');
|
|
|
-const webpack = require('webpack');
|
|
|
-
|
|
|
-const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
|
-const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
|
-const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
+const merge = require('webpack-merge');
|
|
|
+const baseConfig = require('./webpack.base.config');
|
|
|
const { WebpackPluginServe } = require('webpack-plugin-serve');
|
|
|
-
|
|
|
const findPackages = require('../../scripts/findPackages');
|
|
|
+const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
|
|
+const devtool = false;
|
|
|
const ENV = process.env.NODE_ENV || 'development';
|
|
|
-
|
|
|
-function createWebpack ({ alias = {}, context, name = 'index' }) {
|
|
|
- const pkgJson = require(path.join(context, 'package.json'));
|
|
|
- const isProd = ENV === 'production';
|
|
|
- const hasPublic = fs.existsSync(path.join(context, 'public'));
|
|
|
- const plugins = hasPublic
|
|
|
- ? [new CopyWebpackPlugin([{ from: 'public' }])]
|
|
|
- : [];
|
|
|
- // disabled, smooths dev load, was -
|
|
|
- // isProd ? 'source-map' : 'cheap-eval-source-map',
|
|
|
- const devtool = false;
|
|
|
-
|
|
|
- return {
|
|
|
- context,
|
|
|
+const isProd = ENV === 'production';
|
|
|
+const context = __dirname;
|
|
|
+const hasPublic = fs.existsSync(path.join(context, 'public'));
|
|
|
+
|
|
|
+const plugins = isProd
|
|
|
+ ? []
|
|
|
+ : [
|
|
|
+ new WebpackPluginServe({
|
|
|
+ hmr: false, // switch off, Chrome WASM memory leak
|
|
|
+ liveReload: false, // explict off, overrides hmr
|
|
|
+ port: 3000,
|
|
|
+ progress: false, // since we have hmr off, disable
|
|
|
+ static: path.join(process.cwd(), '/build')
|
|
|
+ })
|
|
|
+ ];
|
|
|
+
|
|
|
+module.exports = merge(
|
|
|
+ baseConfig({
|
|
|
+ alias: findPackages().reduce((alias, { dir, name }) => {
|
|
|
+ alias[name] = path.resolve(context, `../${dir}/src`);
|
|
|
+
|
|
|
+ return alias;
|
|
|
+ }, {}),
|
|
|
+ context
|
|
|
+ }),
|
|
|
+ {
|
|
|
devtool,
|
|
|
- entry: [
|
|
|
- '@babel/polyfill',
|
|
|
- `./src/${name}.tsx`,
|
|
|
- isProd
|
|
|
- ? null
|
|
|
- : null // 'webpack-plugin-serve/client'
|
|
|
- ].filter((entry) => entry),
|
|
|
- mode: ENV,
|
|
|
- module: {
|
|
|
- rules: [
|
|
|
- {
|
|
|
- exclude: /(node_modules)/,
|
|
|
- test: /\.css$/,
|
|
|
- use: [
|
|
|
- isProd
|
|
|
- ? MiniCssExtractPlugin.loader
|
|
|
- : require.resolve('style-loader'),
|
|
|
- {
|
|
|
- loader: require.resolve('css-loader'),
|
|
|
- options: {
|
|
|
- importLoaders: 1
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- include: /node_modules/,
|
|
|
- test: /\.css$/,
|
|
|
- use: [
|
|
|
- isProd
|
|
|
- ? MiniCssExtractPlugin.loader
|
|
|
- : require.resolve('style-loader'),
|
|
|
- require.resolve('css-loader')
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- exclude: /(node_modules)/,
|
|
|
- test: /\.(js|ts|tsx)$/,
|
|
|
- use: [
|
|
|
- require.resolve('thread-loader'),
|
|
|
- {
|
|
|
- loader: require.resolve('babel-loader'),
|
|
|
- options: require('@polkadot/dev/config/babel')
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- test: /\.md$/,
|
|
|
- use: [
|
|
|
- require.resolve('html-loader'),
|
|
|
- require.resolve('markdown-loader')
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
|
|
|
- use: [
|
|
|
- {
|
|
|
- loader: require.resolve('url-loader'),
|
|
|
- options: {
|
|
|
- esModule: false,
|
|
|
- limit: 10000,
|
|
|
- name: 'static/[name].[hash:8].[ext]'
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- test: [/\.eot$/, /\.ttf$/, /\.svg$/, /\.woff$/, /\.woff2$/],
|
|
|
- use: [
|
|
|
- {
|
|
|
- loader: require.resolve('file-loader'),
|
|
|
- options: {
|
|
|
- esModule: false,
|
|
|
- name: 'static/[name].[hash:8].[ext]'
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- node: {
|
|
|
- child_process: 'empty',
|
|
|
- dgram: 'empty',
|
|
|
- fs: 'empty',
|
|
|
- net: 'empty',
|
|
|
- tls: 'empty'
|
|
|
- },
|
|
|
- optimization: {
|
|
|
- runtimeChunk: 'single',
|
|
|
- splitChunks: {
|
|
|
- cacheGroups: {
|
|
|
- polkadotJs: {
|
|
|
- chunks: 'initial',
|
|
|
- enforce: true,
|
|
|
- name: 'polkadotjs',
|
|
|
- test: /node_modules\/(@polkadot\/wasm-crypto)/
|
|
|
- },
|
|
|
- vendorOther: {
|
|
|
- chunks: 'initial',
|
|
|
- enforce: true,
|
|
|
- name: 'vendor',
|
|
|
- test: /node_modules\/(asn1|bn\.js|buffer|cuint|elliptic|lodash|moment|readable-stream|rxjs)/
|
|
|
- },
|
|
|
- vendorReact: {
|
|
|
- chunks: 'initial',
|
|
|
- enforce: true,
|
|
|
- name: 'react',
|
|
|
- test: /node_modules\/(chart|i18next|react|semantic-ui)/
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- output: {
|
|
|
- chunkFilename: '[name].[chunkhash:8].js',
|
|
|
- filename: '[name].[hash:8].js',
|
|
|
- globalObject: '(typeof self !== \'undefined\' ? self : this)',
|
|
|
- path: path.join(context, 'build'),
|
|
|
- publicPath: ''
|
|
|
- },
|
|
|
- performance: {
|
|
|
- hints: false
|
|
|
- },
|
|
|
plugins: plugins.concat([
|
|
|
- new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
|
|
- new webpack.DefinePlugin({
|
|
|
- 'process.env': {
|
|
|
- NODE_ENV: JSON.stringify(ENV),
|
|
|
- VERSION: JSON.stringify(pkgJson.version),
|
|
|
- WS_URL: JSON.stringify(process.env.WS_URL)
|
|
|
- }
|
|
|
- }),
|
|
|
new HtmlWebpackPlugin({
|
|
|
PAGE_TITLE: 'Polkadot/Substrate Portal',
|
|
|
inject: true,
|
|
|
- template: path.join(context, `${hasPublic ? 'public/' : ''}${name}.html`)
|
|
|
- }),
|
|
|
- new webpack.optimize.SplitChunksPlugin(),
|
|
|
- new MiniCssExtractPlugin({
|
|
|
- filename: '[name].[contenthash:8].css'
|
|
|
- }),
|
|
|
- isProd
|
|
|
- ? null
|
|
|
- : new WebpackPluginServe({
|
|
|
- hmr: false, // switch off, Chrome WASM memory leak
|
|
|
- liveReload: false, // explict off, overrides hmr
|
|
|
- port: 3000,
|
|
|
- progress: false, // since we have hmr off, disable
|
|
|
- static: path.join(process.cwd(), '/build')
|
|
|
- })
|
|
|
- ]).filter((plugin) => plugin),
|
|
|
- resolve: {
|
|
|
- alias,
|
|
|
- extensions: ['.js', '.jsx', '.ts', '.tsx']
|
|
|
- },
|
|
|
- watch: !isProd,
|
|
|
- watchOptions: {
|
|
|
- ignored: ['.yarn', /build/, /node_modules/]
|
|
|
- }
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-module.exports = createWebpack({
|
|
|
- alias: findPackages().reduce((alias, { dir, name }) => {
|
|
|
- alias[name] = path.resolve(__dirname, `../${dir}/src`);
|
|
|
-
|
|
|
- return alias;
|
|
|
- }, {}),
|
|
|
- context: __dirname
|
|
|
-});
|
|
|
+ template: path.join(context, `${hasPublic ? 'public/' : ''}index.html`)
|
|
|
+ })
|
|
|
+ ])
|
|
|
+ }
|
|
|
+);
|