Skip to content

Commit

Permalink
Switch to DCO from CLA
Browse files Browse the repository at this point in the history
Signed-off-by: aboyko <[email protected]>
  • Loading branch information
BoykoAlex committed Feb 25, 2025
1 parent f78a41a commit f4969df
Showing 1 changed file with 44 additions and 10 deletions.
54 changes: 44 additions & 10 deletions vscode-extensions/commons-vscode/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}

0 comments on commit f4969df

Please sign in to comment.