forked from mttu-developers/konabot
29 lines
1.0 KiB
JSON
29 lines
1.0 KiB
JSON
{
|
||
"version": "2.0.0",
|
||
"tasks": [
|
||
{
|
||
"label": "Poetry: Export requirements.txt (Production)",
|
||
"type": "shell",
|
||
"command": "poetry export -f requirements.txt --output requirements.txt --without-hashes",
|
||
"group": "build",
|
||
"presentation": {
|
||
"reveal": "always",
|
||
"panel": "new"
|
||
},
|
||
"problemMatcher": [],
|
||
"detail": "导出生产环境依赖到 requirements.txt,不包含开发依赖和哈希值。"
|
||
},
|
||
{
|
||
"label": "Poetry: Export requirements.txt (Full)",
|
||
"type": "shell",
|
||
"command": "poetry export -f requirements.txt --output requirements.txt",
|
||
"group": "build",
|
||
"presentation": {
|
||
"reveal": "always",
|
||
"panel": "new"
|
||
},
|
||
"problemMatcher": [],
|
||
"detail": "导出所有依赖(包括生产和开发依赖)到 requirements.txt,包含哈希值以确保完全一致。"
|
||
}
|
||
]
|
||
} |