* Updated Typescript types. * Typefixes after merge with release. * chore: GenericApiResponse Removed alltogether. * chore: resolved ApiResponse unknown errors removed PageListPayload. * Added shouldBeDefined. * fix: Resolved type errors. * fix: Typescript upgrade to 4.5 and type fixes. * feat: upgrade to cra 5 * feat: uncomment service worker registeration * force secure websocket protocol * jest test fixes * fix: react function lint rule removed * fix: klona test case. * fix: typescirpt issues resolved * fix: timeout for colorpicker test and change env. * feat: update client-build.yml file * fix: remove brotliplugin use compression plugin * fix: build config fixed * fix: upgrade webpack plugin * fix: add branchbutton test to todo. * fix: remove branch button test. * fix: Add tailwind theme values, fix cypress tests * fix: Typescript type fixes. * feat: run jest tests in silent mode * fix: cypress rgb values add branchbutton jest test * fix: review comments, fixes for error.message * fix: increase cache size for the workbox * fix: remove OrgApi.ts file * fix: cypress.json file remove credentials * fix: downgrade react and react-dom packages Co-authored-by: rahulramesha <rahul@appsmith.com>
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
const SentryWebpackPlugin = require("@sentry/webpack-plugin");
|
|
const { merge } = require("webpack-merge");
|
|
const common = require("./craco.common.config.js");
|
|
const WorkboxPlugin = require("workbox-webpack-plugin");
|
|
const CompressionPlugin = require("compression-webpack-plugin");
|
|
// const BrotliPlugin = require("brotli-webpack-plugin");
|
|
|
|
const env = process.env.REACT_APP_ENVIRONMENT;
|
|
|
|
const plugins = [];
|
|
|
|
plugins.push(
|
|
new WorkboxPlugin.InjectManifest({
|
|
swSrc: "./src/serviceWorker.js",
|
|
mode: "development",
|
|
swDest: "./pageService.js",
|
|
maximumFileSizeToCacheInBytes: 10 * 1024 * 1024,
|
|
}),
|
|
);
|
|
|
|
if (env === "PRODUCTION" || env === "STAGING") {
|
|
if (
|
|
process.env.SENTRY_AUTH_TOKEN != null &&
|
|
process.env.SENTRY_AUTH_TOKEN !== ""
|
|
) {
|
|
plugins.push(
|
|
new SentryWebpackPlugin({
|
|
include: "build",
|
|
ignore: ["node_modules", "webpack.config.js"],
|
|
release: process.env.REACT_APP_SENTRY_RELEASE,
|
|
deploy: {
|
|
env: process.env.REACT_APP_SENTRY_ENVIRONMENT,
|
|
},
|
|
}),
|
|
);
|
|
} else {
|
|
console.log(
|
|
"Sentry configuration missing in process environment. Sentry will be disabled.",
|
|
);
|
|
}
|
|
}
|
|
plugins.push(new CompressionPlugin());
|
|
|
|
plugins.push(
|
|
new CompressionPlugin({
|
|
algorithm: "brotliCompress",
|
|
filename: "[path][base].br",
|
|
test: /\.(js|css|html|svg)$/,
|
|
threshold: 10240,
|
|
minRatio: 0.8,
|
|
}),
|
|
);
|
|
|
|
module.exports = merge(common, {
|
|
webpack: {
|
|
plugins: plugins,
|
|
},
|
|
jest: {
|
|
configure: {
|
|
moduleNameMapper: {
|
|
// Jest module mapper which will detect our absolute imports.
|
|
"^@test(.*)$": "<rootDir>/test$1",
|
|
},
|
|
},
|
|
},
|
|
});
|