mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
3abe7cfc45
* develop: (61 commits) Revert "fix: Reduce gantt exclude days length" Commented out broken test (#4913) fix: Reduce gantt exclude days length Update docs Fix lint issue Fix release version Fix TopBar Add MC to integrations Add TopBar Fix docs Docs: Add Product Hunt info (#4900) Update docs Merge branch 'release/10.5.0' Mermaid release v10.5.0 docs: typo fixed docs: typo fixed Fix for issue with backticks in ids in classDiagrams more fixes fix typo more link fixes ...
35 lines
764 B
Bash
Executable File
35 lines
764 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Fail on errors
|
|
set -euxo pipefail
|
|
|
|
# Increase heap size
|
|
export NODE_OPTIONS="--max_old_space_size=4096"
|
|
|
|
pushd packages/mermaid
|
|
# Append commit hash to version
|
|
jq ".version = .version + \"+${COMMIT_REF:0:7}\"" package.json > package.tmp.json
|
|
mv package.tmp.json package.json
|
|
popd
|
|
|
|
pnpm run -r clean
|
|
pnpm build:types
|
|
pnpm build:mermaid
|
|
|
|
# Clone the Mermaid Live Editor repository
|
|
rm -rf mermaid-live-editor
|
|
git clone --single-branch https://github.com/mermaid-js/mermaid-live-editor.git
|
|
|
|
cd mermaid-live-editor
|
|
|
|
# We have to use npm instead of yarn because it causes trouble in netlify
|
|
# Install dependencies
|
|
npm install
|
|
|
|
# Link local mermaid to live editor
|
|
npm link ../packages/mermaid
|
|
|
|
# Force Build the site
|
|
npm run build -- --force
|
|
|