mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Exporting ResourceMetrics and PodCharts to extension API (#7326) Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix update button being visible when download for update fails (#7336) Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Update repository in statefulset template from k8s.gcr.io to registry.k8s (#7338) Signed-off-by: EnriqueTejeda <quique.tejeda.68@gmail.com> * Fix cluster view broken scrolling (#7349) Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Release 6.4.7 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix release tool Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> Signed-off-by: EnriqueTejeda <quique.tejeda.68@gmail.com> Signed-off-by: Sebastian Malton <sebastian@malton.name> Co-authored-by: Alex Andreev <alex.andreev.email@gmail.com> Co-authored-by: Janne Savolainen <janne.savolainen@live.fi> Co-authored-by: Enrique Tejeda <quique.tejeda.68@gmail.com>
30 lines
650 B
JSON
30 lines
650 B
JSON
{
|
|
"name": "@k8slens/release-tool",
|
|
"version": "6.4.7",
|
|
"description": "Release tool for lens monorepo",
|
|
"main": "dist/index.mjs",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rimraf dist/",
|
|
"build": "swc ./src/index.ts -d ./dist"
|
|
},
|
|
"bin": {
|
|
"create-release-pr": "./dist/index.js"
|
|
},
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@swc/cli": "^0.1.61",
|
|
"@swc/core": "^1.3.35",
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/node": "^16.18.11",
|
|
"@types/semver": "^7.3.13",
|
|
"rimraf": "^4.1.2"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.2.0",
|
|
"inquirer": "^9.1.4",
|
|
"semver": "^7.3.8"
|
|
}
|
|
}
|