Archived
1
0

Remove unused isCi var

This commit is contained in:
Asher
2019-02-06 12:05:48 -06:00
parent 972806b210
commit f034aee26e
3 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,5 @@
const path = require("path");
const environment = process.env.NODE_ENV || "development";
const isCi = typeof process.env.CI !== "undefined";
const HappyPack = require("happypack");
const webpack = require("webpack");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
@ -10,8 +9,6 @@ const root = path.join(__dirname, "..");
module.exports = (options = {}) => ({
context: root,
devtool: "source-map",
// entry: "./packages/app/src/index.ts",
mode: isCi ? "production" : "development",
module: {
rules: [{
loader: "string-replace-loader",