-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
I'm starting to try this project out and really like it so far. When watching multiple TypeScript builds however, it's not clear which typecheck is which:
I think something as simple as this could work:
————————————————————————————
TS: OK (admin/tsconfig.json)
————————————————————————————
————————————————————————————
TS: OK (tsconfig.json)
————————————————————————————
Build script for reference:
/** Build script to use esbuild without specifying 1000 CLI options */
const { build, cliopts } = require("estrella");
const glob = require("tiny-glob");
const [opts, args] = cliopts.parse(
["react", "Build React sources"],
["typescript", "Build typescript soruces"],
);
if (opts.react) {
(async () => {
await build({
entryPoints: ["./admin/src/index"],
tsconfig: "./admin/tsconfig.json",
bundle: true,
minify: true,
outdir: "admin/build",
sourcemap: "external",
logLevel: "info",
define: {
"process.env.NODE_ENV": '"production"',
},
});
})().catch(() => process.exit(1));
}
if (opts.typescript) {
(async () => {
let entryPoints = await glob("./src/**/*.ts");
entryPoints = entryPoints.filter((ep) => !ep.endsWith(".d.ts"));
await build({
entryPoints,
outdir: "build",
bundle: false,
minify: false,
sourcemap: "external",
logLevel: "info",
platform: "node",
format: "cjs",
target: "node10",
});
})().catch(() => process.exit(1));
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
