Skip to content

Commit d782051

Browse files
committed
chore: update vscode configs for new release.
1 parent a7f30f1 commit d782051

File tree

2 files changed

+15
-32
lines changed

2 files changed

+15
-32
lines changed

Diff for: packages/glimmer-templates/.vscode/settings.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
"**/dist/**/*": true,
55
"**/*.lock": true
66
},
7-
"editor.tabSize": 2
8-
}
7+
"editor.tabSize": 2,
8+
"tslint.packageManager": "yarn",
9+
"npm.packageManager": "yarn"
10+
}

Diff for: packages/glimmer-templates/.vscode/tasks.json

+11-30
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,13 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=733558
3-
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
5-
"command": "npm",
6-
"isShellCommand": true,
7-
"showOutput": "always",
8-
"suppressTaskName": true,
9-
"tasks": [
10-
{
11-
"taskName": "install",
12-
"args": ["install"]
13-
},
14-
{
15-
"taskName": "update",
16-
"args": ["update"]
17-
},
18-
{
19-
"taskName": "test",
20-
"args": ["run", "test"]
21-
},
22-
{
23-
"taskName": "builder",
24-
"isBuildCommand": true,
25-
"args": ["run", "test"]
26-
},
27-
{
28-
"taskName": "compile",
29-
"args": ["run", "prepublish"]
30-
}
31-
]
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "compile",
8+
"type": "npm",
9+
"script": "compile",
10+
"problemMatcher": []
11+
}
12+
]
3213
}

0 commit comments

Comments
 (0)