mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Drop package-lock since 6.4 is still using yarn Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add check for no relevant PRs Signed-off-by: Sebastian Malton <sebastian@malton.name> * Release 6.4.14 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Restore disk metrics to PersistentVolumeClaim details page (#7427) Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com> Co-authored-by: Jim Ehrismann <40840436+jim-docker@users.noreply.github.com>
30 lines
651 B
JSON
30 lines
651 B
JSON
{
|
|
"name": "@k8slens/release-tool",
|
|
"version": "6.4.14",
|
|
"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"
|
|
}
|
|
}
|