Revert "chore: Set node heap size"

This reverts commit 8df965bd606d4acd173e316f6992328ac2383516.
This commit is contained in:
Sidharth Vinod 2023-02-16 16:10:20 +05:30
parent 8c7043ffaf
commit 743c636441
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
5 changed files with 1 additions and 9 deletions

View File

@ -8,8 +8,6 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
strategy:
fail-fast: false
matrix:

View File

@ -18,8 +18,6 @@ jobs:
strategy:
matrix:
node-version: [18.x]
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- uses: actions/checkout@v3

View File

@ -25,8 +25,6 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout
uses: actions/checkout@v3

View File

@ -11,8 +11,6 @@ jobs:
strategy:
matrix:
node-version: [18.x]
env:
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- uses: actions/checkout@v3

View File

@ -20,7 +20,7 @@
"build:viz": "pnpm build:mermaid --visualize",
"build:types": "tsc -p ./packages/mermaid/tsconfig.json --emitDeclarationOnly && tsc -p ./packages/mermaid-example-diagram/tsconfig.json --emitDeclarationOnly",
"build:watch": "pnpm build:vite --watch",
"build": "pnpm run -r clean && concurrently \"pnpm build:vite\" \"pnpm build:types\"",
"build": "pnpm run -r clean && pnpm build:types && pnpm build:vite",
"dev": "concurrently \"pnpm build:vite --watch\" \"ts-node-esm .vite/server.ts\"",
"release": "pnpm build",
"lint": "eslint --cache --cache-strategy content --ignore-path .gitignore . && pnpm lint:jison && prettier --cache --check .",