MCPcopy
hub / github.com/rdev/liquid-glass-react / buildAll

Function buildAll

esbuild.config.js:28โ€“43  ยท  view source on GitHub โ†—
()

Source from the content-addressed store, hash-verified

26});
27
28const buildAll = async () => {
29 try {
30 console.log('๐Ÿš€ Building ESM bundle...');
31 await esbuild.build(createBuildConfig('esm'));
32 console.log('โœ… ESM bundle built successfully');
33
34 console.log('๐Ÿš€ Building CJS bundle...');
35 await esbuild.build(createBuildConfig('cjs'));
36 console.log('โœ… CJS bundle built successfully');
37
38 console.log('๐ŸŽ‰ All bundles built successfully!');
39 } catch (error) {
40 console.error('โŒ Build failed:', error);
41 process.exit(1);
42 }
43};
44
45const watch = async () => {
46 try {

Callers 1

esbuild.config.jsFile ยท 0.85

Calls 1

createBuildConfigFunction ยท 0.85

Tested by

no test coverage detected