1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

chore: Use lerna for parallel dev threads instead of "concurrently"

This synergises with lerna/nx better, particularly for caching.

Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2023-06-01 17:27:23 +03:00
parent f136402117
commit 9d44ad8617
2 changed files with 1 additions and 2 deletions

View File

@ -25,7 +25,6 @@
"prebuild:app": "run-script-os",
"prebuild:app:default": "exit 0",
"prebuild:app:win32": "rimraf node_modules/win-ca/pem",
"start": "concurrently -i -k \"npm run dev-run -C\" npm:dev:*",
"dev-run": "nodemon --watch ./static/build/main.js --exec \"electron --remote-debugging-port=9223 --inspect .\"",
"dev:main": "cross-env NODE_ENV=development webpack --config webpack/main.ts --progress --watch",
"dev:renderer": "cross-env NODE_ENV=development ts-node ./webpack/dev-server.ts",

View File

@ -20,7 +20,7 @@
"dev": "cross-env NODE_ENV=development lerna run build --stream --skip-nx-cache",
"postdev": "cross-env NODE_ENV=development lerna watch -- lerna run build --stream --scope \\$LERNA_PACKAGE_NAME",
"prestart-dev": "cd ./open-lens && npm run build:tray-icons && npm run download:binaries",
"start-dev": "lerna run start",
"start-dev": "lerna run dev:main,dev:renderer,dev-run --stream --scope open-lens",
"postinstall": "linkable",
"lint": "lerna run lint --stream --no-bail",
"lint:fix": "lerna run lint:fix --stream",