Skip to content

Commit 2439e08

Browse files
authored
Merge pull request #8 from Lucas-RMND/hotfix/windows_config_tasks.json
add windows config in tasks.json to execute "run evidence" button
2 parents a427d97 + 0cf2afa commit 2439e08

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.vscode/tasks.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"label": "Run Evidence",
1919
"type": "shell",
2020
"command": "if command -v npm > /dev/null 2>&1; then cd analytics/evidence && npm install && npm run sources && npm run dev -- --host 0.0.0.0; else echo 'NPM not installed'; fi",
21+
"windows": {
22+
"command": "cd analytics\\evidence; npm install; npm run sources; npm run dev -- --host 0.0.0.0"
23+
},
2124
"group": "none",
2225
"icon": {
2326
"id": "run"
@@ -29,4 +32,4 @@
2932
}
3033
}
3134
]
32-
}
35+
}

0 commit comments

Comments
 (0)