[monorepo] rebuild lezer output as part of 'make install' (#28545)

* [monorepo] rebuild lezer output as part of 'make install'

* [monorepo] run 'make install' with high concurrency in Jenkins

* [monorepo] rebuild lezer parser output once

* [monorepo] headless npm run

* [web] update docs for lezer

GitOrigin-RevId: f385bb8a9cdab1a6bfc28a8843b5128ceec364ec
This commit is contained in:
Jakob Ackermann
2025-09-17 14:20:22 +02:00
committed by Copybot
parent 22cfe179e1
commit 74746a096c
2 changed files with 6 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ pipeline {
parallel {
stage('Install deps') {
steps {
sh 'make install'
sh 'make install -j10'
sh 'make -C server-ce/test npm_install_in_docker'
script { job_npm_install_done = true }
}

View File

@@ -38,7 +38,11 @@ The parser is written in a "grammar" file, (and a "tokens" file with custom toke
From the monorepo root:
``` sh
```sh
# automatic (on changes)
make install
# manually
bin/npm -w services/web run 'lezer-latex:generate'
```