refactor: run prettier on the whole codebase

This commit is contained in:
thecodrr
2022-08-26 16:19:39 +05:00
parent 054c973c99
commit e898ef5d86
570 changed files with 13058 additions and 10818 deletions

View File

@@ -1,8 +1,8 @@
process.env.NODE_ENV = "production";
const webpack = require("webpack");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const webpackConfigProd = require("react-scripts/config/webpack.config")(
"production"
);
@@ -25,7 +25,7 @@ webpackConfigProd.plugins.push(
new ProgressBarPlugin({
format: `${green("analyzing...")} ${green("[:bar]")}${green(
"[:percent]"
)}${green("[:elapsed seconds]")} - :msg`,
)}${green("[:elapsed seconds]")} - :msg`
})
);