mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +00:00
Merge pull request #67 from 0rvar/0rvar/revamp-dev-flow
Simplify build and dev process
This commit is contained in:
commit
2753b01923
3 changed files with 119 additions and 559 deletions
15
package.json
15
package.json
|
@ -4,19 +4,14 @@
|
||||||
"author": "Dessalines <tyhou13@gmx.com>",
|
"author": "Dessalines <tyhou13@gmx.com>",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build:client:dev": "webpack --env platform=client --mode=development",
|
"build:dev": "webpack --mode=development",
|
||||||
"build:client:prod": "webpack --env platform=client --mode=production",
|
"build:prod": "webpack --mode=production",
|
||||||
"build:dev": "yarn run build:server:dev && yarn run build:client:dev",
|
|
||||||
"build:prod": "yarn run build:server:prod && yarn run build:client:prod",
|
|
||||||
"build:server:dev": "webpack --env platform=server --mode=development",
|
|
||||||
"build:server:prod": "webpack --env platform=server --mode=production",
|
|
||||||
"clean": "yarn run rimraf dist",
|
"clean": "yarn run rimraf dist",
|
||||||
"dev": "nodemon --watch ./src/shared/components -e ts,tsx,css,scss --exec yarn run start",
|
"dev": "yarn start",
|
||||||
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
|
||||||
"prebuild:dev": "yarn clean && node generate_translations.js",
|
"prebuild:dev": "yarn clean && node generate_translations.js",
|
||||||
"prebuild:prod": "yarn clean && node generate_translations.js",
|
"prebuild:prod": "yarn clean && node generate_translations.js",
|
||||||
"serve": "node dist/js/server.js",
|
"start": "yarn build:dev --watch"
|
||||||
"start": "yarn run build:dev && yarn run serve"
|
|
||||||
},
|
},
|
||||||
"repository": "https://github.com/LemmyNet/lemmy-ui",
|
"repository": "https://github.com/LemmyNet/lemmy-ui",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -78,9 +73,9 @@
|
||||||
"mini-css-extract-plugin": "^1.2.0",
|
"mini-css-extract-plugin": "^1.2.0",
|
||||||
"node-fetch": "^2.6.1",
|
"node-fetch": "^2.6.1",
|
||||||
"node-sass": "^4.12.0",
|
"node-sass": "^4.12.0",
|
||||||
"nodemon": "^2.0.6",
|
|
||||||
"prettier": "^2.1.2",
|
"prettier": "^2.1.2",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
|
"run-node-webpack-plugin": "^1.3.0",
|
||||||
"sass-loader": "^10.0.4",
|
"sass-loader": "^10.0.4",
|
||||||
"sortpack": "^2.1.9",
|
"sortpack": "^2.1.9",
|
||||||
"style-loader": "^2.0.0",
|
"style-loader": "^2.0.0",
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
|
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 path = require('path');
|
const RunNodeWebpackPlugin = require('run-node-webpack-plugin');
|
||||||
const webpack = require('webpack');
|
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]
|
||||||
|
@ -11,73 +12,96 @@ const banner = `
|
||||||
@license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
|
@license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
|
||||||
`;
|
`;
|
||||||
|
|
||||||
module.exports = function (env, _) {
|
const base = {
|
||||||
const platform = env.platform || 'server';
|
output: {
|
||||||
|
filename: 'js/server.js',
|
||||||
|
publicPath: '/',
|
||||||
|
},
|
||||||
|
resolve: {
|
||||||
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
||||||
|
},
|
||||||
|
performance: {
|
||||||
|
hints: false,
|
||||||
|
},
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.(scss|css)$/i,
|
||||||
|
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
|
||||||
|
exclude: /node_modules/, // ignore node_modules
|
||||||
|
loader: 'babel-loader',
|
||||||
|
},
|
||||||
|
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
|
||||||
|
{
|
||||||
|
test: /\.m?js/,
|
||||||
|
resolve: {
|
||||||
|
fullySpecified: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
new MiniCssExtractPlugin({
|
||||||
|
filename: 'styles/styles.css',
|
||||||
|
}),
|
||||||
|
new CopyPlugin({
|
||||||
|
patterns: [{ from: './src/assets', to: './assets' }],
|
||||||
|
}),
|
||||||
|
new webpack.BannerPlugin({
|
||||||
|
banner,
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
const base = {
|
const createServerConfig = (env, mode) => {
|
||||||
// mode is set by package.json flags
|
const config = merge({}, base, {
|
||||||
entry: './src/server/index.tsx', // Point to main file
|
mode,
|
||||||
|
entry: './src/server/index.tsx',
|
||||||
output: {
|
output: {
|
||||||
filename: 'js/server.js',
|
filename: 'js/server.js',
|
||||||
publicPath: '/',
|
|
||||||
},
|
},
|
||||||
resolve: {
|
target: 'node',
|
||||||
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
externals: [nodeExternals(), 'inferno-helmet'],
|
||||||
},
|
});
|
||||||
performance: {
|
|
||||||
hints: false,
|
|
||||||
},
|
|
||||||
module: {
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
test: /\.(scss|css)$/i,
|
|
||||||
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
|
|
||||||
exclude: /node_modules/, // ignore node_modules
|
|
||||||
loader: 'babel-loader',
|
|
||||||
},
|
|
||||||
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
|
|
||||||
{
|
|
||||||
test: /\.m?js/,
|
|
||||||
resolve: {
|
|
||||||
fullySpecified: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
devServer: {
|
|
||||||
host: '0.0.0.0',
|
|
||||||
contentBase: 'src/',
|
|
||||||
historyApiFallback: true,
|
|
||||||
},
|
|
||||||
plugins: [
|
|
||||||
new MiniCssExtractPlugin({
|
|
||||||
filename: 'styles/styles.css',
|
|
||||||
}),
|
|
||||||
new CopyPlugin({
|
|
||||||
patterns: [{ from: './src/assets', to: './assets' }],
|
|
||||||
}),
|
|
||||||
new webpack.BannerPlugin({
|
|
||||||
banner,
|
|
||||||
}),
|
|
||||||
],
|
|
||||||
cache: {
|
|
||||||
type: 'filesystem',
|
|
||||||
name: platform,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
// server-specific configuration
|
if (mode === 'development') {
|
||||||
if (platform === 'server') {
|
config.cache = {
|
||||||
base.target = 'node';
|
type: 'filesystem',
|
||||||
base.externals = [nodeExternals(), 'inferno-helmet'];
|
name: 'server',
|
||||||
|
};
|
||||||
|
|
||||||
|
config.plugins.push(
|
||||||
|
new RunNodeWebpackPlugin({
|
||||||
|
runOnlyInWatchMode: true,
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
// client-specific configurations
|
|
||||||
if (platform === 'client') {
|
return config;
|
||||||
base.entry = './src/client/index.tsx';
|
|
||||||
base.output.filename = 'js/client.js';
|
|
||||||
}
|
|
||||||
return base;
|
|
||||||
};
|
};
|
||||||
|
const createClientConfig = (env, mode) => {
|
||||||
|
const config = merge({}, base, {
|
||||||
|
mode,
|
||||||
|
entry: './src/client/index.tsx',
|
||||||
|
output: {
|
||||||
|
filename: 'js/client.js',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (mode === 'development') {
|
||||||
|
config.cache = {
|
||||||
|
type: 'filesystem',
|
||||||
|
name: 'client',
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return config;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = (env, properties) => [
|
||||||
|
createServerConfig(env, properties.mode || 'development'),
|
||||||
|
createClientConfig(env, properties.mode || 'development'),
|
||||||
|
];
|
||||||
|
|
Loading…
Reference in a new issue