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

Release 6.1.18 (#6544)

* Release 6.1.18

Signed-off-by: Sebastian Malton <sebastian@malton.name>

* Fix non-bundled extensions not working (#6543)

- Stop omitting the optional dependencies (which happens to also
  just remove them)

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-11-09 12:40:53 -08:00 committed by GitHub
parent f87a29052c
commit 4c75b43007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
"productName": "OpenLens",
"description": "OpenLens - Open Source IDE for Kubernetes",
"homepage": "https://github.com/lensapp/lens",
"version": "6.1.17",
"version": "6.1.18",
"main": "static/build/main.js",
"copyright": "© 2022 OpenLens Authors",
"license": "MIT",

View File

@ -20,8 +20,8 @@ const baseNpmInstallArgs = [
"install",
"--audit=false",
"--fund=false",
// NOTE: we do not omit the `optional` dependencies because that is how we specify the non-bundled extensions
"--omit=dev",
"--omit=optional",
"--omit=peer",
"--prefer-offline",
];