Skip to content

Commit 7ca4617

Browse files
authored
Vscode-web (#135)
1 parent d37c702 commit 7ca4617

File tree

15 files changed

+3170
-359
lines changed

15 files changed

+3170
-359
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
out
22
*.vsix
33
node_modules
4-
.DS_Store
4+
.DS_Store
5+
.vscode-test-web

.vscode/launch.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,14 @@
1010
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
1111
"stopOnEntry": false,
1212
"sourceMaps": true,
13-
"outFiles": ["${workspaceRoot}/out/**/*.js"],
14-
"preLaunchTask": "tsc-compile"
13+
"outFiles": ["${workspaceRoot}/out/**/*.js"]
1514
},
1615
{
1716
"name": "Launch Tests",
1817
"type": "extensionHost",
1918
"request": "launch",
2019
"runtimeExecutable": "${execPath}",
21-
"args": [
22-
"--extensionDevelopmentPath=${workspaceRoot}",
23-
"--extensionTestsPath=${workspaceRoot}/out/test"
24-
],
20+
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
2521
"stopOnEntry": false
2622
}
2723
]

.vscode/settings.json

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,24 @@
66
"search.exclude": {
77
"out": true
88
},
9-
"peacock.color": "#1975d2",
109
"workbench.colorCustomizations": {
11-
"activityBar.activeBackground": "#378fe7",
12-
"activityBar.activeBorder": "#ab1460",
13-
"activityBar.background": "#378fe7",
10+
"activityBar.activeBackground": "#1975d2",
11+
"activityBar.activeBorder": "#f18dbf",
12+
"activityBar.background": "#1975d2",
1413
"activityBar.foreground": "#e7e7e7",
1514
"activityBar.inactiveForeground": "#e7e7e799",
16-
"activityBarBadge.background": "#ab1460",
17-
"activityBarBadge.foreground": "#e7e7e7",
18-
"editorGroup.border": "#378fe7",
19-
"panel.border": "#378fe7",
20-
"sideBar.border": "#378fe7",
15+
"activityBarBadge.background": "#f18dbf",
16+
"activityBarBadge.foreground": "#15202b",
17+
"sash.hoverBorder": "#1975d2",
2118
"statusBar.background": "#1975d2",
2219
"statusBar.foreground": "#e7e7e7",
2320
"statusBarItem.hoverBackground": "#378fe7",
21+
"statusBarItem.remoteBackground": "#1975d2",
22+
"statusBarItem.remoteForeground": "#e7e7e7",
2423
"titleBar.activeBackground": "#1975d2",
2524
"titleBar.activeForeground": "#e7e7e7",
2625
"titleBar.inactiveBackground": "#1975d299",
27-
"titleBar.inactiveForeground": "#e7e7e799",
28-
"sash.hoverBorder": "#378fe7",
29-
"statusBarItem.remoteBackground": "#1975d2",
30-
"statusBarItem.remoteForeground": "#e7e7e7"
26+
"titleBar.inactiveForeground": "#e7e7e799"
3127
},
32-
"peacock.remoteColor": "1975d2"
28+
"peacock.color": "1975d2"
3329
}

.vscode/tasks.json

Lines changed: 0 additions & 43 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## Angular Snippets Changelog
22

3+
<a name="13.0.0"></a>
4+
5+
# 13.0.0 (2022-01-31)
6+
7+
- vscode.dev support
8+
- minor v13 updates
9+
- removed node express server generation so the extension can be supported in vscode for the web
10+
- removed JSON schema validation for Web App Manifest
11+
- added "open-in-browser" npm script to test the vscode.dev mode as shown in https://code.visualstudio.com/api/extension-guides/web-extensions#test-your-web-extension
12+
313
<a name="12.0.0"></a>
414

515
# 12.0.0 (2021-05-24)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Angular TypeScript Snippets for VS Code
22

3-
**Now Updated for Angular 12.0.0 release**
3+
**Updated for Angular 13.0.0 release**
44

55
This extension for Visual Studio Code adds snippets for Angular for TypeScript and HTML.
66

0 commit comments

Comments
 (0)