Better template properties order

This commit is contained in:
Dirk Baeumer
2017-07-04 15:02:08 +02:00
parent 0021efbf46
commit 40ac250c7f

View File

@@ -54,6 +54,7 @@ const msbuild: TaskEntry = {
'\t"tasks": [',
'\t\t{',
'\t\t\t"taskName": "build",',
'\t\t\t"type": "process",',
'\t\t\t"command": "msbuild",',
'\t\t\t"args": [',
'\t\t\t\t// Ask msbuild to generate full paths for file names.',
@@ -86,8 +87,8 @@ const command: TaskEntry = {
'\t"tasks": [',
'\t\t{',
'\t\t\t"taskName": "echo",',
'\t\t\t"command": "echo Hello",',
'\t\t\t"type": "shell"',
'\t\t\t"type": "shell",',
'\t\t\t"command": "echo Hello"',
'\t\t}',
'\t]',
'}'
@@ -108,14 +109,14 @@ const maven: TaskEntry = {
'\t"tasks": [',
'\t\t{',
'\t\t\t"taskName": "verify",',
'\t\t\t"command": "mvn -B verify",',
'\t\t\t"type": "shell",',
'\t\t\t"command": "mvn -B verify",',
'\t\t\t"group": "build"',
'\t\t},',
'\t\t{',
'\t\t\t"taskName": "test",',
'\t\t\t"command": "mvn -B test",',
'\t\t\t"type": "shell",',
'\t\t\t"command": "mvn -B test",',
'\t\t\t"group": "test"',
'\t\t}',
'\t]',