chore: update tasks
This commit is contained in:
parent
af926a92b4
commit
305eeb566b
1 changed files with 38 additions and 37 deletions
75
.vscode/tasks.json
vendored
75
.vscode/tasks.json
vendored
|
@ -12,55 +12,56 @@
|
||||||
"tasks": [
|
"tasks": [
|
||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"run"
|
"run",
|
||||||
, "build"
|
"build"
|
||||||
],
|
],
|
||||||
"isBuildCommand": true,
|
"isBuildCommand": true,
|
||||||
"command": "npm",
|
"command": "npm",
|
||||||
"dependsOn": "tsc",
|
"dependsOn": "tsc",
|
||||||
"echoCommand": true,
|
"echoCommand": true,
|
||||||
"isShellCommand": true,
|
"isShellCommand": true,
|
||||||
"taskName": "build"
|
"taskName": "build",
|
||||||
|
"problemMatcher": []
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"linux": {
|
"linux": {
|
||||||
"args": [
|
"args": [
|
||||||
"."
|
".",
|
||||||
, "-name"
|
"-name",
|
||||||
, "\"*.js\""
|
"\"*.js\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./node_modules/*\""
|
"\"./node_modules/*\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./src/*\""
|
"\"./src/*\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./test/*\""
|
"\"./test/*\"",
|
||||||
, "-type"
|
"-type",
|
||||||
, "f"
|
"f",
|
||||||
, "-delete"
|
"-delete"
|
||||||
],
|
],
|
||||||
"command": "find",
|
"command": "find",
|
||||||
"isShellCommand": true
|
"isShellCommand": true
|
||||||
},
|
},
|
||||||
"osx": {
|
"osx": {
|
||||||
"args": [
|
"args": [
|
||||||
"."
|
".",
|
||||||
, "-name"
|
"-name",
|
||||||
, "\"*.js\""
|
"\"*.js\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./node_modules/*\""
|
"\"./node_modules/*\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./src/*\""
|
"\"./src/*\"",
|
||||||
, "-not"
|
"-not",
|
||||||
, "-path"
|
"-path",
|
||||||
, "\"./test/*\""
|
"\"./test/*\"",
|
||||||
, "-type"
|
"-type",
|
||||||
, "f"
|
"f",
|
||||||
, "-delete"
|
"-delete"
|
||||||
],
|
],
|
||||||
"command": "find",
|
"command": "find",
|
||||||
"isShellCommand": true
|
"isShellCommand": true
|
||||||
|
@ -71,8 +72,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"run"
|
"run",
|
||||||
, "changelog"
|
"changelog"
|
||||||
],
|
],
|
||||||
"command": "npm",
|
"command": "npm",
|
||||||
"echoCommand": true,
|
"echoCommand": true,
|
||||||
|
@ -81,8 +82,8 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"args": [
|
"args": [
|
||||||
"-p"
|
"-p",
|
||||||
, "."
|
"."
|
||||||
],
|
],
|
||||||
"command": "tsc",
|
"command": "tsc",
|
||||||
"dependsOn": "clean project",
|
"dependsOn": "clean project",
|
||||||
|
|
Loading…
Reference in a new issue