提交 40ac250c 编写于 作者: D Dirk Baeumer

Better template properties order

上级 0021efbf
......@@ -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]',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册