shrub/pkg/interface/config/webpack.dev.js

135 lines
3.4 KiB
JavaScript
Raw Normal View History

2020-04-24 02:08:47 +03:00
const path = require('path');
const webpack = require('webpack');
2021-09-06 07:06:32 +03:00
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
2020-04-30 01:48:25 +03:00
const urbitrc = require('./urbitrc');
2020-10-13 08:04:46 +03:00
const _ = require('lodash');
const { execSync } = require('child_process');
const GIT_DESC = execSync('git describe --always', { encoding: 'utf8' }).trim();
2020-07-15 08:04:14 +03:00
let devServer = {
hot: true,
port: 9000,
2020-09-26 02:13:29 +03:00
host: '0.0.0.0',
disableHostCheck: true,
2021-09-17 03:49:31 +03:00
historyApiFallback: {
2022-01-12 01:43:02 +03:00
index: '/apps/landscape/index.html',
2021-09-17 03:49:31 +03:00
disableDotRule: true
2022-01-12 01:43:02 +03:00
}
};
2020-07-15 08:04:14 +03:00
2020-10-13 08:04:46 +03:00
const router = _.mapKeys(urbitrc.FLEET || {}, (value, key) => `${key}.localhost:9000`);
2020-07-15 08:04:14 +03:00
if(urbitrc.URL) {
devServer = {
...devServer,
2021-09-21 23:13:46 +03:00
// headers: {
// 'Service-Worker-Allowed': '/'
// },
2021-09-06 07:06:32 +03:00
proxy: [
{
context: (path) => {
console.log(path);
if(path === '/apps/landscape/desk.js') {
return true;
}
return !path.startsWith('/apps/landscape');
},
2020-10-13 08:04:46 +03:00
changeOrigin: true,
target: urbitrc.URL,
2021-09-06 07:06:32 +03:00
router
2020-10-13 08:04:46 +03:00
}
2021-09-06 07:06:32 +03:00
]
};
2020-07-15 08:04:14 +03:00
}
2020-04-24 02:08:47 +03:00
module.exports = {
2020-04-30 01:48:25 +03:00
mode: 'development',
2020-04-24 02:08:47 +03:00
entry: {
app: './src/index.tsx'
// serviceworker: './src/serviceworker.js'
2020-04-24 02:08:47 +03:00
},
module: {
rules: [
{
2020-06-22 07:59:02 +03:00
test: /\.(j|t)sx?$/,
2020-04-24 02:08:47 +03:00
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/typescript', ['@babel/preset-react', {
runtime: 'automatic',
development: true
}]],
2020-04-24 02:08:47 +03:00
plugins: [
'@babel/transform-runtime',
2020-04-24 02:08:47 +03:00
'@babel/plugin-proposal-object-rest-spread',
'@babel/plugin-proposal-optional-chaining',
2020-07-15 08:04:14 +03:00
'@babel/plugin-proposal-class-properties',
2022-03-15 18:17:30 +03:00
process.env.NODE_ENV !== 'production' && 'react-refresh/babel'
2020-04-24 02:08:47 +03:00
]
}
},
exclude: /node_modules\/(?!(@tlon\/indigo-dark|@tlon\/indigo-light|@tlon\/indigo-react|@urbit\/api)\/).*/
2020-04-24 02:08:47 +03:00
},
2020-04-30 01:48:25 +03:00
{
2020-04-30 02:02:59 +03:00
test: /\.css$/i,
2020-04-30 01:48:25 +03:00
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
// Compiles Sass to CSS
'sass-loader'
]
2021-09-28 07:14:33 +03:00
},
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/'
}
}
]
2020-04-30 01:48:25 +03:00
}
2021-09-28 07:14:33 +03:00
2020-04-30 01:48:25 +03:00
]
2020-04-24 02:08:47 +03:00
},
resolve: {
2020-06-22 07:59:02 +03:00
extensions: ['.js', '.ts', '.tsx']
2020-04-24 02:08:47 +03:00
},
devtool: 'inline-source-map',
2020-07-15 08:04:14 +03:00
devServer: devServer,
2020-04-24 02:08:47 +03:00
plugins: [
new webpack.DefinePlugin({
'process.env.LANDSCAPE_SHORTHASH': JSON.stringify(GIT_DESC),
'process.env.LANDSCAPE_STORAGE_VERSION': JSON.stringify(Date.now()),
'process.env.LANDSCAPE_LAST_WIPE': JSON.stringify('2021-10-20')
2021-09-06 07:06:32 +03:00
}),
2020-04-28 23:49:39 +03:00
// new CleanWebpackPlugin(),
2021-09-06 07:06:32 +03:00
new HtmlWebpackPlugin({
2021-09-24 03:02:44 +03:00
title: 'Groups',
2021-09-06 07:06:32 +03:00
template: './public/index.html'
}),
2022-03-15 18:17:30 +03:00
process.env.NODE_ENV !== 'production' && new ReactRefreshWebpackPlugin()
2020-04-24 02:08:47 +03:00
],
watch: true,
2020-04-24 02:08:47 +03:00
output: {
2021-01-28 08:30:48 +03:00
filename: (pathData) => {
return pathData.chunk.name === 'app' ? 'index.js' : '[name].js';
},
chunkFilename: '[name].js',
path: path.resolve(__dirname, '../dist'),
2021-09-13 14:03:13 +03:00
publicPath: '/apps/landscape/',
2021-01-28 08:30:48 +03:00
globalObject: 'this'
2020-04-24 02:08:47 +03:00
},
2020-04-28 23:49:39 +03:00
optimization: {
2020-04-30 01:48:25 +03:00
minimize: false,
usedExports: true
2020-04-28 23:49:39 +03:00
}
2020-04-24 02:08:47 +03:00
};