Try fixing crypto node bug. Fixes #473 (#474)

* Try fixing crypto node bug. Fixes #473

* v0.13.6-rc.1
This commit is contained in:
Dessalines 2021-11-03 12:57:13 -04:00 committed by GitHub
parent bfb43aae77
commit 8356ece70e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 28 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "lemmy-ui", "name": "lemmy-ui",
"description": "An isomorphic UI for lemmy", "description": "An isomorphic UI for lemmy",
"version": "0.13.0", "version": "0.13.6-rc.1",
"author": "Dessalines <tyhou13@gmx.com>", "author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"scripts": { "scripts": {

View file

@ -1,9 +1,9 @@
const webpack = require('webpack'); const webpack = require("webpack");
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const nodeExternals = require('webpack-node-externals'); const nodeExternals = require("webpack-node-externals");
const CopyPlugin = require('copy-webpack-plugin'); const CopyPlugin = require("copy-webpack-plugin");
const RunNodeWebpackPlugin = require('run-node-webpack-plugin'); const RunNodeWebpackPlugin = require("run-node-webpack-plugin");
const { merge } = require('lodash'); const { merge } = require("lodash");
const banner = ` const banner = `
hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file] hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
@ -14,11 +14,12 @@ const banner = `
const base = { const base = {
output: { output: {
filename: 'js/server.js', filename: "js/server.js",
publicPath: '/', publicPath: "/",
hashFunction: "xxhash64",
}, },
resolve: { resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'], extensions: [".js", ".jsx", ".ts", ".tsx"],
}, },
performance: { performance: {
hints: false, hints: false,
@ -27,12 +28,12 @@ const base = {
rules: [ rules: [
{ {
test: /\.(scss|css)$/i, test: /\.(scss|css)$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'], use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
}, },
{ {
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
exclude: /node_modules/, // ignore node_modules exclude: /node_modules/, // ignore node_modules
loader: 'babel-loader', loader: "babel-loader",
}, },
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467 // Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
{ {
@ -45,10 +46,10 @@ const base = {
}, },
plugins: [ plugins: [
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename: 'styles/styles.css', filename: "styles/styles.css",
}), }),
new CopyPlugin({ new CopyPlugin({
patterns: [{ from: './src/assets', to: './assets' }], patterns: [{ from: "./src/assets", to: "./assets" }],
}), }),
new webpack.BannerPlugin({ new webpack.BannerPlugin({
banner, banner,
@ -59,18 +60,18 @@ const base = {
const createServerConfig = (_env, mode) => { const createServerConfig = (_env, mode) => {
const config = merge({}, base, { const config = merge({}, base, {
mode, mode,
entry: './src/server/index.tsx', entry: "./src/server/index.tsx",
output: { output: {
filename: 'js/server.js', filename: "js/server.js",
}, },
target: 'node', target: "node",
externals: [nodeExternals(), 'inferno-helmet'], externals: [nodeExternals(), "inferno-helmet"],
}); });
if (mode === 'development') { if (mode === "development") {
config.cache = { config.cache = {
type: 'filesystem', type: "filesystem",
name: 'server', name: "server",
}; };
config.plugins.push( config.plugins.push(
@ -85,16 +86,16 @@ const createServerConfig = (_env, mode) => {
const createClientConfig = (_env, mode) => { const createClientConfig = (_env, mode) => {
const config = merge({}, base, { const config = merge({}, base, {
mode, mode,
entry: './src/client/index.tsx', entry: "./src/client/index.tsx",
output: { output: {
filename: 'js/client.js', filename: "js/client.js",
}, },
}); });
if (mode === 'development') { if (mode === "development") {
config.cache = { config.cache = {
type: 'filesystem', type: "filesystem",
name: 'client', name: "client",
}; };
} }
@ -102,6 +103,6 @@ const createClientConfig = (_env, mode) => {
}; };
module.exports = (env, properties) => [ module.exports = (env, properties) => [
createServerConfig(env, properties.mode || 'development'), createServerConfig(env, properties.mode || "development"),
createClientConfig(env, properties.mode || 'development'), createClientConfig(env, properties.mode || "development"),
]; ];