mirror of
https://github.com/canonical/canonical.com.git
synced 2025-07-21 23:50:42 +00:00
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
let esbuild = require("esbuild");
|
|
const path = require("path");
|
|
|
|
// prettier-ignore
|
|
let entries = {
|
|
"careerExplorer": "./static/js/career-explorer/App.tsx",
|
|
"side-navigation": "./static/js/side-navigation.js",
|
|
"forms": "./static/js/forms.js",
|
|
"prepare-form-inputs": "./static/js/prepare-form-inputs.js",
|
|
"navigation": "./static/js/navigation/main.js",
|
|
"active-nav-scroll": "./static/js/active-nav-scroll.js",
|
|
"homepage_animations": "./static/js/homepage/animations.js",
|
|
"homepage_carousel": "./static/js/homepage/carousel.js",
|
|
"scroll-section": "./static/js/scroll-section.js",
|
|
"cookie-policy-with-callback": "./static/js/cookie-policy-with-callback.js",
|
|
};
|
|
|
|
const isDev = process && process.env && process.env.NODE_ENV === "development";
|
|
|
|
for (const [key, value] of Object.entries(entries)) {
|
|
const options = {
|
|
entryPoints: [value],
|
|
bundle: true,
|
|
minify: isDev ? false : true,
|
|
nodePaths: [path.resolve(__dirname, "./static/js/src")],
|
|
sourcemap: isDev ? false : true,
|
|
outfile: "static/js/dist/" + key + ".js",
|
|
target: ["chrome90", "firefox88", "safari14", "edge90"],
|
|
define: {
|
|
"process.env.NODE_ENV":
|
|
// Explicitly check for 'development' so that this defaults to
|
|
// 'production' in all other cases.
|
|
isDev ? '"development"' : '"production"',
|
|
},
|
|
};
|
|
|
|
esbuild
|
|
.build(options)
|
|
.then((result) => {
|
|
console.log("Built " + key + ".js");
|
|
})
|
|
// Fail the build if there are errors.
|
|
.catch(() => process.exit(1));
|
|
}
|