MCPcopy Create free account
hub / github.com/6pac/SlickGrid / executeFullBuild

Function executeFullBuild

scripts/builds.mjs:60–66  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

58
59/** Execute full build of all format types (iife, cjs & esm) */
60export async function executeFullBuild() {
61 // first CJS/ESM bundle as single file
62 await executeCjsEsmBuilds();
63
64 // build iife in a separate process since all files are built separately instead of a single bundle
65 return await buildAllIifeFiles();
66}
67
68/**
69 * Loop through all slick files and build them as separate iife files using esbuild

Callers 2

initFunction · 0.90
runProdBuildWithTypesFunction · 0.85

Calls 2

executeCjsEsmBuildsFunction · 0.85
buildAllIifeFilesFunction · 0.85

Tested by

no test coverage detected