Switch to DCO from CLA

Signed-off-by: aboyko <alex.boyko@broadcom.com>
This commit is contained in:
aboyko
2025-02-25 12:30:31 -05:00
parent f78a41a481
commit f4969dfbec

View File

@@ -1,23 +1,57 @@
{
"version": "0.1.0",
"version": "2.0.0",
"command": "npm",
"isShellCommand": true,
"args": ["run"],
"showOutput": "always",
"args": [
"run"
],
"tasks": [
{
"taskName": "compile",
"isBuildCommand": true
"label": "compile",
"type": "shell",
"command": "npm",
"args": [
"run",
"compile"
],
"problemMatcher": [],
"group": {
"_id": "build",
"isDefault": false
}
},
{
"taskName": "clean"
"label": "clean",
"type": "shell",
"command": "npm",
"args": [
"run",
"clean"
],
"problemMatcher": []
},
{
"taskName": "lint"
"label": "lint",
"type": "shell",
"command": "npm",
"args": [
"run",
"lint"
],
"problemMatcher": []
},
{
"taskName": "test",
"isTestCommand": true
"label": "test",
"type": "shell",
"command": "npm",
"args": [
"run",
"test"
],
"problemMatcher": [],
"group": {
"_id": "test",
"isDefault": false
}
}
]
}