Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

When watching multiple TypeScript builds, make it easier to distinguish which one is which #33

Open
AlCalzone opened this issue Mar 19, 2021 · 1 comment
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@AlCalzone
Copy link

AlCalzone commented Mar 19, 2021

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:

grafik

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));
}
@rsms rsms added the enhancement New feature or request label Mar 21, 2021
@rsms
Copy link
Owner

rsms commented Mar 21, 2021

Oh, good idea! PR welcome :–)

@rsms rsms added the help wanted Extra attention is needed label Mar 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants