Skip to content

Commit 72e9098

Browse files
authored
Merge pull request #594 from microsoftgraph/feature/scripts-dependabot
feature/scripts dependabot
2 parents 09be720 + b0d6bf2 commit 72e9098

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ updates:
1010
schedule:
1111
interval: daily
1212
open-pull-requests-limit: 10
13+
- package-ecosystem: npm
14+
directory: "/scripts"
15+
schedule:
16+
interval: daily
17+
open-pull-requests-limit: 10

.vscode/tasks.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "tsc",
6-
"isShellCommand": true,
7-
"args": ["-p", "."],
8-
"showOutput": "silent",
9-
"problemMatcher": "$tsc"
6+
"args": [
7+
"-p",
8+
"."
9+
],
10+
"problemMatcher": "$tsc",
11+
"tasks": [
12+
{
13+
"label": "tsc",
14+
"type": "shell",
15+
"command": "tsc",
16+
"args": [
17+
"-p",
18+
"."
19+
],
20+
"problemMatcher": "$tsc",
21+
"group": {
22+
"_id": "build",
23+
"isDefault": false
24+
}
25+
}
26+
]
1027
}

0 commit comments

Comments
 (0)