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

166 lines
4.5 KiB
JavaScript
Raw Normal View History

2020-04-24 02:08:47 +03:00
const path = require('path');
const webpack = require('webpack');
2020-04-30 01:48:25 +03:00
// const HtmlWebpackPlugin = require('html-webpack-plugin');
// const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const urbitrc = require('./urbitrc');
const fs = require('fs');
const util = require('util');
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();
function copyFile(src,dest) {
return new Promise((res,rej) =>
fs.copyFile(src,dest, err => err ? rej(err) : res()));
}
class UrbitShipPlugin {
constructor(urbitrc) {
this.piers = urbitrc.URBIT_PIERS;
this.herb = urbitrc.herb || false;
}
apply(compiler) {
compiler.hooks.afterEmit.tapPromise(
'UrbitShipPlugin',
async (compilation) => {
const src = path.resolve(compiler.options.output.path, 'index.js');
// uncomment to copy into all piers
//
// return Promise.all(this.piers.map(pier => {
// const dst = path.resolve(pier, 'app/landscape/js/index.js');
// copyFile(src, dst).then(() => {
// if(!this.herb) {
// return;
// }
// pier = pier.split('/');
// const desk = pier.pop();
// return exec(`herb -p hood -d '+hood/commit %${desk}' ${pier.join('/')}`);
// });
// }));
}
);
}
}
2020-04-24 02:08:47 +03:00
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,
2020-07-15 08:04:14 +03:00
historyApiFallback: true
};
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,
2020-07-15 08:04:14 +03:00
index: '',
proxy: {
'/~landscape/js/bundle/index.*.js': {
target: 'http://localhost:9000',
2020-10-13 08:04:46 +03:00
pathRewrite: (req, path) => {
return '/index.js'
}
},
// '/~landscape/js/serviceworker.js': {
// target: 'http://localhost:9000',
// pathRewrite: (req, path) => {
// return '/serviceworker.js'
// }
// },
'**': {
2020-10-13 08:04:46 +03:00
changeOrigin: true,
target: urbitrc.URL,
2020-10-13 08:04:46 +03:00
router,
// ensure proxy doesn't timeout channels
2020-10-13 08:04:46 +03:00
proxyTimeout: 0,
}
2020-07-15 08:04:14 +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-01-28 08:30:48 +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,
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 UrbitShipPlugin(urbitrc),
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'),
'process.env.TUTORIAL_LINKS': JSON.stringify('community-articles-2143'),
})
2020-04-28 23:49:39 +03:00
// new CleanWebpackPlugin(),
// new HtmlWebpackPlugin({
// title: 'Hot Module Replacement',
// 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-01-28 08:30:48 +03:00
publicPath: '/',
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
};