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

chore: Fix broken builds preventing start of "dev"

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 15:43:43 +03:00
parent 2a06577c4b
commit e50daa3279

View File

@ -19,10 +19,10 @@
"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 --no-bail", "build:dev": "cross-env NODE_ENV=development lerna run build --stream",
"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",
"start-dev": "npm run start-dev-application", "start-dev": "npm run start-dev-application",
"postinstall": "linkable", "postinstall": "linkable",
"lint": "lerna run lint --stream --no-bail", "lint": "lerna run lint --stream --no-bail",