mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-14 22:09:29 +02:00
Merge branch 'master' into develop
* master: (24 commits) docs: fix links Skip precommit hooks on CI Fix release-publish Fix timeline and mindmap Updating integration instructions for timeline and mindmap Remove node heap Revert "chore: Set node heap size" Revert "Remove text hint" Split cytoscape Linear build Remove text hint Fix elk import Dynamic elk import Remove heap option elk web-worker Test publish docs chore: Add file extension for dynamic import chore: Defer elk loading Update vitepress Fix links to integrations.md ...
This commit is contained in:
@@ -123,11 +123,9 @@ export const getBuildConfig = ({ minify, core, watch, entryName }: BuildOptions)
|
||||
};
|
||||
|
||||
const buildPackage = async (entryName: keyof typeof packageOptions) => {
|
||||
return Promise.allSettled([
|
||||
build(getBuildConfig({ minify: false, entryName })),
|
||||
build(getBuildConfig({ minify: 'esbuild', entryName })),
|
||||
build(getBuildConfig({ minify: false, core: true, entryName })),
|
||||
]);
|
||||
await build(getBuildConfig({ minify: false, entryName }));
|
||||
await build(getBuildConfig({ minify: 'esbuild', entryName }));
|
||||
await build(getBuildConfig({ minify: false, core: true, entryName }));
|
||||
};
|
||||
|
||||
const main = async () => {
|
||||
|
Reference in New Issue
Block a user