123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- /* eslint-disable @typescript-eslint/camelcase */
- /* eslint-disable @typescript-eslint/no-var-requires */
- // Copyright 2017-2019 @polkadot/apps authors & contributors
- // This software may be modified and distributed under the terms
- // of the Apache-2.0 license. See the LICENSE file for details.
- 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 { WebpackPluginServe } = require('webpack-plugin-serve');
- const findPackages = require('../../scripts/findPackages'); // Do we need to add joy- apps in that script?
- const DEFAULT_THEME = 'substrate';
- 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,
- devtool,
- entry: [
- '@babel/polyfill',
- `./src/${name}.tsx`,
- isProd
- ? null
- : null // 'webpack-plugin-serve/client'
- ].filter((entry) => entry),
- mode: ENV,
- output: {
- chunkFilename: '[name].[chunkhash:8].js',
- filename: '[name].[hash:8].js',
- globalObject: '(typeof self !== \'undefined\' ? self : this)',
- path: path.join(context, 'build')
- },
- resolve: {
- alias,
- extensions: ['.js', '.jsx', '.ts', '.tsx']
- },
- module: {
- rules: [
- {
- test: /\.css$/,
- exclude: /(node_modules)/,
- use: [
- isProd
- ? MiniCssExtractPlugin.loader
- : require.resolve('style-loader'),
- {
- loader: require.resolve('css-loader'),
- options: {
- importLoaders: 1
- }
- },
- {
- loader: require.resolve('postcss-loader'),
- options: {
- ident: 'postcss',
- plugins: () => [
- require('precss'),
- require('autoprefixer'),
- require('postcss-simple-vars'),
- require('postcss-nested'),
- require('postcss-import'),
- require('postcss-clean')(),
- require('postcss-flexbugs-fixes')
- ]
- }
- }
- ]
- },
- {
- test: /\.s[ac]ss$/i,
- use: [
- // Creates `style` nodes from JS strings
- 'style-loader',
- // Translates CSS into CommonJS
- 'css-loader',
- // Compiles Sass to CSS
- 'sass-loader'
- ]
- },
- {
- test: /\.less$/,
- loaders: ['style-loader', 'css-loader', 'less-loader']
- },
- {
- test: /\.css$/,
- include: /node_modules/,
- use: [
- isProd
- ? MiniCssExtractPlugin.loader
- : require.resolve('style-loader'),
- require.resolve('css-loader')
- ]
- },
- {
- test: /\.(js|ts|tsx)$/,
- exclude: /(node_modules)/,
- use: [
- require.resolve('thread-loader'),
- {
- loader: require.resolve('babel-loader'),
- options: require('@polkadot/dev-react/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: {
- limit: 10000,
- name: 'static/[name].[hash:8].[ext]'
- }
- }
- ]
- },
- {
- test: [/\.eot$/, /\.ttf$/, /\.svg$/, /\.woff$/, /\.woff2$/],
- use: [
- {
- loader: require.resolve('file-loader'),
- options: {
- name: 'static/[name].[hash:8].[ext]'
- }
- }
- ]
- }
- ]
- },
- node: {
- child_process: 'empty',
- dgram: 'empty',
- fs: 'empty',
- net: 'empty',
- tls: 'empty'
- },
- optimization: {
- runtimeChunk: 'single',
- splitChunks: {
- cacheGroups: {
- 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)/
- },
- polkadotJs: {
- chunks: 'initial',
- enforce: true,
- name: 'polkadotjs',
- test: /node_modules\/(@polkadot\/wasm-(crypto|dalek-ed25519|schnorrkel))/
- }
- }
- }
- },
- 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),
- UI_MODE: JSON.stringify(process.env.UI_MODE || 'light'),
- UI_THEME: JSON.stringify(process.env.UI_THEME || DEFAULT_THEME),
- WS_URL: JSON.stringify(process.env.WS_URL)
- }
- }),
- new HtmlWebpackPlugin({
- inject: true,
- template: path.join(context, `${hasPublic ? 'public/' : ''}${name}.html`),
- IS_PROD: isProd,
- PAGE_TITLE: process.env.UI_THEME === 'substrate'
- ? 'Joystream Network Portal'
- : 'Joystream Network Portal'
- }),
- 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
- progress: false, // since we have hmr off, disable
- port: 3000,
- static: path.join(process.cwd(), '/build')
- })
- ]).filter((plugin) => plugin),
- watch: !isProd
- };
- }
- module.exports = createWebpack({
- context: __dirname,
- alias: {
- ...(
- findPackages().reduce((alias, { dir, name }) => {
- alias[name] = path.resolve(__dirname, `../${dir}/src`);
- return alias;
- }, {})
- ),
- // TODO: Me might try to add it to "findPackages", but this will be a little more tricky
- '@joystream/types': path.resolve(__dirname, '../../../types/src')
- }
- });
|