Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Update workspace and tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMcMaster committed Mar 25, 2022
1 parent 251caed commit bad0beb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions client/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@
"command": "npm",
"args": ["install"],
"problemMatcher": [],
"label": "Client: Install",
"detail": "Instal npm project packages for Angular client"
"label": "Angular: Install Packages",
"detail": "Install npm project packages for Angular client"
},
{
"type": "npm",
"script": "start",
"dependsOn": ["Client: Install"],
"dependsOn": ["Angular: Install Packages"],
"problemMatcher": [],
"label": "Client: Serve",
"label": "Angular: Serve",
"detail": "Serves the Angular client on http://localhost:4201"
},
{
"type": "npm",
"script": "build",
"dependsOn": ["Client: Install"],
"dependsOn": ["Angular: Install Packages"],
"problemMatcher": [],
"label": "Client: Build",
"label": "Angular: Build",
"detail": "Builds the Angular client for production"
}
]
Expand Down
8 changes: 4 additions & 4 deletions payroll-processor.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"name": "api"
},
{
"path": "angular",
"name": "client"
"path": "client",
"name": "angular"
},
{
"path": "vue",
"name": "vue-client"
"path": "vue-client",
"name": "vue"
},
{
"path": ".",
Expand Down

0 comments on commit bad0beb

Please sign in to comment.