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

chore: Make dev build not bail on failures

The failures are more convenient to fix using build:dev:watch anyway.

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

Signed-off-by: Mikko Aspiala <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2023-06-02 13:59:08 +03:00
parent 2bf0bc8e33
commit 801e8c6229

View File

@ -19,7 +19,7 @@
"clean:node_modules": "lerna clean -y && rimraf node_modules", "clean:node_modules": "lerna clean -y && rimraf node_modules",
"clean:build-cache": "nx reset", "clean:build-cache": "nx reset",
"rebuild:dev": "npm run clean:build-cache && npm run build:dev", "rebuild:dev": "npm run clean:build-cache && npm run build:dev",
"build:dev": "cross-env NODE_ENV=development lerna run build --stream", "build:dev": "cross-env NODE_ENV=development lerna run build --stream --no-bail",
"build:dev:watch": "cross-env NODE_ENV=development lerna watch -- lerna run build --stream --scope \\$LERNA_PACKAGE_NAME", "build:dev:watch": "cross-env NODE_ENV=development lerna watch -- lerna run build --stream --scope \\$LERNA_PACKAGE_NAME",
"start-dev-application": "cross-env NODE_ENV=development lerna run dev:main,dev:renderer,dev-run --stream --scope open-lens", "start-dev-application": "cross-env NODE_ENV=development lerna run dev:main,dev:renderer,dev-run --stream --scope open-lens",
"dev": "npm run build:dev && npm run build:dev:watch", "dev": "npm run build:dev && npm run build:dev:watch",