Production builds configuration
parent
f9ff64efd4
commit
11e5c9a2a6
|
@ -6,7 +6,13 @@
|
||||||
"start:dev": "webpack-dev-server --config webpack.config.dev.js --port 3000",
|
"start:dev": "webpack-dev-server --config webpack.config.dev.js --port 3000",
|
||||||
"prestart:api": "node tools/createMockDb.js",
|
"prestart:api": "node tools/createMockDb.js",
|
||||||
"start:api": "node tools/apiServer.js",
|
"start:api": "node tools/apiServer.js",
|
||||||
"test": "jest --watch"
|
"test": "jest --watch",
|
||||||
|
"test:ci": "jest",
|
||||||
|
"clean:build": "rimraf ./build && mkdir build",
|
||||||
|
"prebuild": "run-p clean:build test:ci",
|
||||||
|
"build": "webpack --config webpack.config.prod.js",
|
||||||
|
"postbuild": "run-p start:api serve:build",
|
||||||
|
"serve:build": "http-server ./build"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
"setupFiles": [
|
"setupFiles": [
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
import { createStore, applyMiddleware, compose } from "redux";
|
||||||
|
import rootReducer from "./reducers";
|
||||||
|
import reduxImmutableStateInvariant from "redux-immutable-state-invariant";
|
||||||
|
import thunk from "redux-thunk";
|
||||||
|
|
||||||
|
export default function configureStore(initialState) {
|
||||||
|
const composeEnhancers =
|
||||||
|
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; //add support for Redux dev tools
|
||||||
|
|
||||||
|
return createStore(
|
||||||
|
rootReducer,
|
||||||
|
initialState,
|
||||||
|
composeEnhancers(applyMiddleware(thunk, reduxImmutableStateInvariant()))
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,15 +1,6 @@
|
||||||
import { createStore, applyMiddleware, compose } from "redux";
|
// Use CommonJS require below so we can dynamically import during build-time.
|
||||||
import rootReducer from "./reducers";
|
if (process.env.NODE_ENV === "production") {
|
||||||
import reduxImmutableStateInvariant from "redux-immutable-state-invariant";
|
module.exports = require("./configureStore.prod");
|
||||||
import thunk from "redux-thunk";
|
} else {
|
||||||
|
module.exports = require("./configureStore.dev");
|
||||||
export default function configureStore(initialState) {
|
|
||||||
const composeEnhancers =
|
|
||||||
window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; //add support for Redux dev tools
|
|
||||||
|
|
||||||
return createStore(
|
|
||||||
rootReducer,
|
|
||||||
initialState,
|
|
||||||
composeEnhancers(applyMiddleware(thunk, reduxImmutableStateInvariant()))
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
import { createStore, applyMiddleware } from "redux";
|
||||||
|
import rootReducer from "./reducers";
|
||||||
|
import thunk from "redux-thunk";
|
||||||
|
|
||||||
|
export default function configureStore(initialState) {
|
||||||
|
return createStore(rootReducer, initialState, applyMiddleware(thunk));
|
||||||
|
}
|
|
@ -0,0 +1,78 @@
|
||||||
|
const webpack = require("webpack");
|
||||||
|
const path = require("path");
|
||||||
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
||||||
|
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
|
||||||
|
const webpackBundleAnalyzer = require("webpack-bundle-analyzer");
|
||||||
|
|
||||||
|
process.env.NODE_ENV = "production";
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
mode: "production",
|
||||||
|
target: "web",
|
||||||
|
devtool: "source-map",
|
||||||
|
entry: "./src/index",
|
||||||
|
output: {
|
||||||
|
path: path.resolve(__dirname, "build"),
|
||||||
|
publicPath: "/",
|
||||||
|
filename: "bundle.js"
|
||||||
|
},
|
||||||
|
plugins: [
|
||||||
|
// Display bundle stats
|
||||||
|
new webpackBundleAnalyzer.BundleAnalyzerPlugin({ analyzerMode: "static" }),
|
||||||
|
|
||||||
|
new MiniCssExtractPlugin({
|
||||||
|
filename: "[name].[contenthash].css"
|
||||||
|
}),
|
||||||
|
|
||||||
|
new webpack.DefinePlugin({
|
||||||
|
// This global makes sure React is built in prod mode.
|
||||||
|
"process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV),
|
||||||
|
"process.env.API_URL": JSON.stringify("http://localhost:3001")
|
||||||
|
}),
|
||||||
|
new HtmlWebpackPlugin({
|
||||||
|
template: "src/index.html",
|
||||||
|
favicon: "src/favicon.ico",
|
||||||
|
minify: {
|
||||||
|
// see https://github.com/kangax/html-minifier#options-quick-reference
|
||||||
|
removeComments: true,
|
||||||
|
collapseWhitespace: true,
|
||||||
|
removeRedundantAttributes: true,
|
||||||
|
useShortDoctype: true,
|
||||||
|
removeEmptyAttributes: true,
|
||||||
|
removeStyleLinkTypeAttributes: true,
|
||||||
|
keepClosingSlash: true,
|
||||||
|
minifyJS: true,
|
||||||
|
minifyCSS: true,
|
||||||
|
minifyURLs: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
],
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /\.(js|jsx)$/,
|
||||||
|
exclude: /node_modules/,
|
||||||
|
use: ["babel-loader", "eslint-loader"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /(\.css)$/,
|
||||||
|
use: [
|
||||||
|
MiniCssExtractPlugin.loader,
|
||||||
|
{
|
||||||
|
loader: "css-loader",
|
||||||
|
options: {
|
||||||
|
sourceMap: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: "postcss-loader",
|
||||||
|
options: {
|
||||||
|
plugins: () => [require("cssnano")],
|
||||||
|
sourceMap: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue