Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*

azure-functions-core-tools/.telemetry/20200331222905_2f21fc7f736d45fa9be029b90391935f.trn

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Expand Down
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"tombonnike.vscode-status-bar-format-toggle"
Expand Down
15 changes: 6 additions & 9 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Node Functions",
"type": "node",
"request": "attach",
"port": 9229,
"preLaunchTask": "func: host start"
},
{
"type": "node",
"request": "launch",
"name": "Debug DIRECT WordpressSync",
"program": "debug.js",
"args": ["1"],
"args": [
"1"
],
"cwd": "${workspaceRoot}/WordpressSync",
"outputCapture": "std"
},
Expand All @@ -22,7 +17,9 @@
"request": "launch",
"name": "Debug 3X DIRECT WordpressSync",
"program": "debug.js",
"args": ["3"],
"args": [
"3"
],
"cwd": "${workspaceRoot}/WordpressSync",
"outputCapture": "std"
},
Expand Down
7 changes: 0 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "func",
"command": "host start",
"problemMatcher": "$func-watch",
"isBackground": true,
"dependsOn": "npm install"
},
{
"type": "shell",
"label": "npm install",
Expand Down