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

chore: Add escape-hatch scripts to deal with probable stale build caches

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:57:09 +03:00
parent c685c1f340
commit 2bf0bc8e33

View File

@ -17,6 +17,8 @@
"build:docs": "lerna run --stream build:docs", "build:docs": "lerna run --stream build:docs",
"clean": "lerna run clean --stream", "clean": "lerna run clean --stream",
"clean:node_modules": "lerna clean -y && rimraf node_modules", "clean:node_modules": "lerna clean -y && rimraf node_modules",
"clean:build-cache": "nx reset",
"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",
"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",