PromucFlow_constructor/app/client/craco.build.config.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-02-27 11:25:55 +00:00
/* eslint-disable @typescript-eslint/no-var-requires */
2020-04-17 04:59:43 +00:00
const SentryWebpackPlugin = require("@sentry/webpack-plugin");
const merge = require("webpack-merge");
const common = require("./craco.common.config.js");
2020-05-05 12:16:51 +00:00
const WorkboxPlugin = require("workbox-webpack-plugin");
const CompressionPlugin = require("compression-webpack-plugin");
const BrotliPlugin = require("brotli-webpack-plugin");
2020-02-27 11:25:55 +00:00
2020-04-17 04:59:43 +00:00
const env = process.env.REACT_APP_ENVIRONMENT;
2020-04-17 04:59:43 +00:00
const plugins = [];
plugins.push(
new WorkboxPlugin.InjectManifest({
swSrc: "./src/serviceWorker.js",
mode: "development",
swDest: "./pageService.js",
maximumFileSizeToCacheInBytes: 7 * 1024 * 1024,
}),
);
2020-04-17 04:59:43 +00:00
if (env === "PRODUCTION" || env === "STAGING") {
Include version information when building Docker images for server and client (#2200) * Include version information in backend builds * Enable manual trigger of server workflow * Add a dummy input field for manual trigger * Fix secret checking in github actions * Disable cron scheduling of sync job * Build docker image on pushing a version tag * Fix duplicated id and invalid id in release workflow * Don't try to login to Docker * Avoid download progress outputs from Maven * Add version information for building client * Calculate version number only once * Enable push to DockerHub after building images * Use Docker username from GitHub secrets * Fix Docker username in tags when building image * Use different secret for org name * Minor refactoring in server workflow * Update client build workflow to use version * Enable manual triggering of client workflow * Set snapshot version for server builds * Push to docker for all branches (temp) * Undo temp change to push all branches to DockerHub * Use Docker org from secrets in client.yml * Fix missing version reference in client.yml * Remove debug command in dockerfile * Save release notes in a resource file in Docker image * Fix query serialization to get release notes * Get releases of current repo instead of hard-coded repo * Fix variable quoting for repo variables * Exclude draft and prerelease nodes from image * Fix call to any in release notes processor * Fix syntax error in release notes script * Implement API to get new release count and info * Add missing ReleaseNotes component * Have the release workflow run after a release is created * Build server after generating release notes * Change release trigger to "released" * Change release trigger to "published" * Change release trigger to released, edited and deleted * Use JS script to get release notes, take 1 * Filter drafts and prereleases in script * Fix syntax error in ES6 * Write release notes to file * Create parent directory before writing release notes * Log cwd in release notes script * Log pwd along with release-notes content * Handle case where working directory is incorrect * Remove shell based release notes generator * Don't show error when Sentry config is missing * Check for sentry auth token to enable Sentry * Carry build's exit code over to CI * Mark out build result and add a note about it * Add a small test to verify new versions computation * Remove incorrect test assertion * Remove generation of release notes file * Connect to cloud services to fetch release notes data * Fix missing runner for test class * Handle missing cloud_services base URL * Fix test failures due to missing mocks * Enable sync-ee cron job * Revert build.sh as there's no real change * Add API to update release notes viewed version for users * Fix prettier line-length errors * Create UserData model for info unrelated to auth * Fix field name calls * Ensure we have a userId before setting userData * Add tests for setting version number in UserData * Include instanceId when fetching release notes
2021-01-12 12:45:15 +00:00
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,
},
}),
Include version information when building Docker images for server and client (#2200) * Include version information in backend builds * Enable manual trigger of server workflow * Add a dummy input field for manual trigger * Fix secret checking in github actions * Disable cron scheduling of sync job * Build docker image on pushing a version tag * Fix duplicated id and invalid id in release workflow * Don't try to login to Docker * Avoid download progress outputs from Maven * Add version information for building client * Calculate version number only once * Enable push to DockerHub after building images * Use Docker username from GitHub secrets * Fix Docker username in tags when building image * Use different secret for org name * Minor refactoring in server workflow * Update client build workflow to use version * Enable manual triggering of client workflow * Set snapshot version for server builds * Push to docker for all branches (temp) * Undo temp change to push all branches to DockerHub * Use Docker org from secrets in client.yml * Fix missing version reference in client.yml * Remove debug command in dockerfile * Save release notes in a resource file in Docker image * Fix query serialization to get release notes * Get releases of current repo instead of hard-coded repo * Fix variable quoting for repo variables * Exclude draft and prerelease nodes from image * Fix call to any in release notes processor * Fix syntax error in release notes script * Implement API to get new release count and info * Add missing ReleaseNotes component * Have the release workflow run after a release is created * Build server after generating release notes * Change release trigger to "released" * Change release trigger to "published" * Change release trigger to released, edited and deleted * Use JS script to get release notes, take 1 * Filter drafts and prereleases in script * Fix syntax error in ES6 * Write release notes to file * Create parent directory before writing release notes * Log cwd in release notes script * Log pwd along with release-notes content * Handle case where working directory is incorrect * Remove shell based release notes generator * Don't show error when Sentry config is missing * Check for sentry auth token to enable Sentry * Carry build's exit code over to CI * Mark out build result and add a note about it * Add a small test to verify new versions computation * Remove incorrect test assertion * Remove generation of release notes file * Connect to cloud services to fetch release notes data * Fix missing runner for test class * Handle missing cloud_services base URL * Fix test failures due to missing mocks * Enable sync-ee cron job * Revert build.sh as there's no real change * Add API to update release notes viewed version for users * Fix prettier line-length errors * Create UserData model for info unrelated to auth * Fix field name calls * Ensure we have a userId before setting userData * Add tests for setting version number in UserData * Include instanceId when fetching release notes
2021-01-12 12:45:15 +00:00
);
} else {
console.log(
"Sentry configuration missing in process environment. Sentry will be disabled.",
);
}
}
plugins.push(new CompressionPlugin());
plugins.push(
new BrotliPlugin({
asset: "[path].br[query]",
test: /\.(js|css|html|svg)$/,
threshold: 10240,
minRatio: 0.8,
}),
);
2020-02-27 11:25:55 +00:00
module.exports = merge(common, {
webpack: {
2020-04-17 04:59:43 +00:00
plugins: plugins,
2020-02-27 11:25:55 +00:00
},
jest: {
configure: {
moduleNameMapper: {
// Jest module mapper which will detect our absolute imports.
"^@test(.*)$": "<rootDir>/test$1",
},
},
},
2020-02-27 11:25:55 +00:00
});