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

122 lines
3.3 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');
2020-04-30 01:48:25 +03:00
// const { CleanWebpackPlugin } = require('clean-webpack-plugin');
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 = {
contentBase: path.join(__dirname, '../dist'),
hot: true,
port: 9000,
2020-09-26 02:13:29 +03:00
host: '0.0.0.0',
disableHostCheck: true,
2021-09-06 07:06:32 +03:00
historyApiFallback: true,
publicPath: '/apps/landscape/'
};
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-06 07:06:32 +03:00
index: 'index.html',
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: {
2021-09-06 07:06:32 +03:00
app: './src/index.js'
// 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,
2021-09-06 07:06:32 +03:00
importSource: '@welldone-software/why-did-you-render'
}]],
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',
'react-hot-loader/babel'
2020-04-24 02:08:47 +03:00
]
}
},
2021-04-15 22:19:48 +03:00
exclude: /node_modules\/(?!(@tlon\/indigo-dark|@tlon\/indigo-light|@tlon\/indigo-react)\/).*/
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'
]
}
]
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),
2021-02-19 06:21:56 +03:00
'process.env.TUTORIAL_HOST': JSON.stringify('~difmex-passed'),
'process.env.TUTORIAL_GROUP': JSON.stringify('beginner-island'),
2021-02-19 06:21:56 +03:00
'process.env.TUTORIAL_CHAT': JSON.stringify('introduce-yourself-7010'),
'process.env.TUTORIAL_BOOK': JSON.stringify('guides-9684'),
2021-09-06 07:06:32 +03:00
'process.env.TUTORIAL_LINKS': JSON.stringify('community-articles-2143')
}),
2020-04-28 23:49:39 +03:00
// new CleanWebpackPlugin(),
2021-09-06 07:06:32 +03:00
new HtmlWebpackPlugin({
2021-09-13 14:03:13 +03:00
title: 'Landscape',
2021-09-06 07:06:32 +03:00
template: './public/index.html'
})
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
};